Hello,
I want to set the value of a textbox to null via jquery. I tried
onclick="$('#c_album').val('TEST VALUE');" at the submit button
$('input#c_album').val('hello'); - in the script section
Appreciate assitance
Thanks Dave
[edit]-- this is the code i am using
$('#submit').bind('click',(function(){
$('#src_box').val('hello');
});