BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<script type="text/javascript"> var currencyObj; $(function () { $("#currency").ejCurrencyTextbox( { name: "currency" }); //Object for currency textbox created currencyObj = $("#currency").data("ejCurrencyTextbox"); }); function setValue() { //Value is set to the currency textbox currencyObj.option("value", 500); //Value obtained from EJ currency textbox var currencyValue = currencyObj.option("value"); alert("Currency textbox value is: " + currencyValue); } </script> |