my plugin:

$.fn.checkform = function() {
          $(this).bind("click", function(){alert("it works");}  );
    };

Should probably look like this:
 
$.fn.checkform = function() {
    return this.bind("click", function(){alert("it works");}  );
};

--
wil
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to