// Extender el núcleo de JQuery para poder hacer uso de la función reset() de un formulario en JQuery
$.fn.extend({ reset: function() { return this.each(function() { $(this).is('form') && this.reset(); }); } }); 

