openstackweb/themes/openstack/javascript/jquery.cleanform.js
2014-10-31 16:21:41 -03:00

10 lines
285 B
JavaScript

(function( $ ){
$.fn.cleanForm = function() {
//after serialize clear all!
$('input',this).val('');
$('select',this).val('');
$('textarea',this).val('');
this.find(':checkbox').removeAttr('checked');
return this;
};
}( jQuery ));