I have a page with a div that is dynamically filled using a paginator ;-) At page init I load the first 10 forms in it using jquery .load() method.
What I\'d like to do
ID values are unique to a single DOM element. So you'd need to give each form a new ID, so if you had three forms, you could name them like so:
Now you'd create instances of your ajax request like so:
$('#formone, #formtwo, #formthree').ajaxForm({ beforeSubmit: showLoader, success: hideLoader });