hello I need some instruction I am a novice coder, I can open the files and add the code as long as I know where and what to add. I am using gravity forms on my site. the user fills in the form on page A the data is transferred via query string to page B which has a hidden form and then the data is passed to page C which has a visible form. I need to program a button on page B to act like the submit button on the hidden form so the data will be passed. this is what I got from gravity forms support
You can use jQuery to submit the form when your button is clicked, either add the following to your button onclick attribute or wrap it in a click handler ( http://api.jquery.com/click/ ) bound to your button
jQuery('#gform_13').submit();
can someone explain how to do this? currently the button on page B is an image that redirects to page C when clicked