JS hook for multi page forms

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?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.