Revision: 43188
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 18, 2011 18:06 by erraja_07
Initial Code
/*** Clear Form elements - STARTS ***/ function clear_form_elements(ele) { //alert('tst'); $('.error').hide(); $('.common_error').html(''); $('.notifier').css('display','none'); $(ele).find(':input').each(function() { switch(this.type) { case 'password': case 'select-multiple': case 'select-one': case 'text': case 'textarea': $(this).val(''); break; case 'checkbox': case 'radio': this.checked = false; } });
Initial URL
Initial Description
Initial Title
JQuery Clear Form Elements
Initial Tags
Initial Language
JavaScript