This question is locked. New answers and comments are not allowed.
Hello all!
I have this control:
<%=Html.Telerik().CurrencyTextBox()
.Name("amount")
.MinValue(0)
.MaxValue(1000000)
.Spinners(false)
%>
Best regards
I have this control:
<%=Html.Telerik().CurrencyTextBox()
.Name("amount")
.MinValue(0)
.MaxValue(1000000)
.Spinners(false)
%>
I want to capture its value from javaScript when I press a button but I get an empty variable
var myAmount = $("#amount").val();
In short, how can I capture the CurrencyTextBox´s value through JQuery (javascript)
Best regards