Saturday 8 October 2011

How to Clear text boxes using JQuery(Client Side Script) on buuton Click

 $('input[type="text"]').each(function() { this.value = ''; });
 $('textarea').each(function() { this.value = ''; });

No comments:

Post a Comment