Hello Everyone
I am in A little problem I ahve on input screen where i placed the RADTextbox and RAdNumeric Textbox > I want to empty the textbox fields through jquery > i wrote the code its working but problem is that after empty the textbox when i go back and click the RAD Textbox then the Fileds are show again this problem is not in the simple asp Textbox please let me know if any solution
Here is code to empty the RADTextbox through Jquery
Raghav Sharma
I am in A little problem I ahve on input screen where i placed the RADTextbox and RAdNumeric Textbox > I want to empty the textbox fields through jquery > i wrote the code its working but problem is that after empty the textbox when i go back and click the RAD Textbox then the Fileds are show again this problem is not in the simple asp Textbox please let me know if any solution
Here is code to empty the RADTextbox through Jquery
- $(form).find('input.inputstyle').each(function() {
- this.value = '';
- });
Raghav Sharma
