How to trigger something when navigating between pages in an ajax multiform?
Basically I’m trying to hook into the ‘next’ button on a multipage form, So something like
$("#gform_1").submit(function (e) {
$(".html-element").show();
});
But this only seems to work on non-ajax forms.
Also tried
$("#gform_next_button_1_6").click(function (e) {
$(".html-element").show();
});
Which seems to go nowhere?