Hello Answers!
Can you help me figure out how to make the my last page (tab) the "target" page when my process is at a certain Step ID? I only know enough about Javascript to be stupid/dangerous (depending on your definition), so I've pieced together how to find the Step ID and use the "IF" function, but I can't figure out what I need to set my target.
Here's what I've got so far:
$(document).ready( function() { if($('input[name="stepid"]').val() =="53") { $('#q12')..../*now what?*/; } });
Where 53 is my Step ID and q12 is the field name for the fourth tab of my form.
Thank you so much for your help!
(I had posted this in a reply to an old post, but wasn't sure if it would get picked up as a new question - my apologies if I've doubled down inappropriately!)