I'm having trouble implementing this jQuery plugin for dynamic forms while following this tutorial
This simple code is giving me an error in Firefox 3.5.5.
$(document).ready(function(){
$('#duplicate').dynamicForm('#plus', '#minus', {limit:5});
});
and the error:
"$("#duplicate").dynamicForm is not a function"
There is an element in the HTML with id="duplicate" so I'm not sure what the error means.
Can anyone shed some insight on this issue?