I have the following code:
$(document).ready(function() {
    $.fn.addRemoveButton = function() {
        alert(1);
    };
    $.addRemoveButton();
});
And I get the following error message from firebug:
TypeError: $.addRemoveButton is not a function $.addRemoveButton();
Why and how can I fix this?
 
     
     
     
    