I have made two jquery plugins which both work in their own right.
If I call them using:
$('input').inputShrink();
$('input').fillForm();
then the two effects work. However, if I do:
$('input').inputShrink().fillForm();
then only the first one is applied. It was my understanding you could do this, is there something in my plugins I need to set up?
Quote from the jQuery docs : LINK
In short – remember to return the jQuery object in your plugin.