this.reset() doesn't support this method

this.reset() doesn't support this method

Hi,
 
I'm a newbee to JQuery and started with this Tutorial:
 
 
I have a problem with the below function in the tutorial - it sais that the Object (this) doesn't support this property or method.
 
Can anyone help me figuring out what to do instead?
 
  1. $(document).ready(function() {
       // use this to reset several forms at once
       $("#reset").click(function() {
         $("form").each(function() {
           this.reset();
         });
       });
    });






 
Kind regards,
 
simsen1965 :-)