Hi All, I tried to change the value of a textbox on a button click using javascript snippet, I’m able to place the string in the text box, but not as a value. It is populating like a place holder, when i click the textbox it disappear. code used:- $(document).ready(function(){ $(".ButtonClass").click(function(){ var text= 'Name'; $(".myclass :input").val(text); //('myclass' textbox class name) }); }); also tried :- $('.myclass').val(text); (Not working) Please help me to do this. Thanks in Advance
↧