<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Do not want to tab to next form on a page, stop at submit for each form.</title>
		<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form</link>
		<description>Gravity Support Forums Topic: Do not want to tab to next form on a page, stop at submit for each form.</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:27:08 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-70272</link>
			<pubDate>Thu, 09 Aug 2012 01:28:31 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">70272@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for posting your code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RNickless on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-70189</link>
			<pubDate>Wed, 08 Aug 2012 14:17:19 +0000</pubDate>
			<dc:creator>RNickless</dc:creator>
			<guid isPermaLink="false">70189@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;For anyone with multiple forms on a page on in a slider like the coda slider, here is a fix if you do NOT want the tabbing to go to the next form. Enter button still work for Submit so it's still accessible.&#60;br /&#62;
JS:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$(document).ready(function(evt){

$(&#38;#39;.gform_button&#38;#39;).live(&#38;#39;keydown&#38;#39;, function(evt){
    if(evt.keyCode === 9){
        evt.preventDefault();

        var form = $(this).closest(&#38;#39;form&#38;#39;);
        var input = $(&#38;#39;input:first&#38;#39;, form);

        if(input !== undefined){
            input.focus();
        }
    }
});
});&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>RNickless on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-70181</link>
			<pubDate>Wed, 08 Aug 2012 13:22:15 +0000</pubDate>
			<dc:creator>RNickless</dc:creator>
			<guid isPermaLink="false">70181@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I tried to use something like this: $(&#34;input #gform_submit_button_5&#34;).attr(&#34;tabindex&#34;, &#34;-1&#34;);&#60;br /&#62;
to disable tabbing to the Submit button thereby stopping the tabbing to the next form, but it still tabbed. Running out of ideas.&#60;br /&#62;
Link:&#60;br /&#62;
&#60;a href=&#34;http://gondolaskate.com/ace-hardware/&#34; rel=&#34;nofollow&#34;&#62;http://gondolaskate.com/ace-hardware/&#60;/a&#62;&#60;br /&#62;
password: password
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RNickless on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-69965</link>
			<pubDate>Tue, 07 Aug 2012 15:46:04 +0000</pubDate>
			<dc:creator>RNickless</dc:creator>
			<guid isPermaLink="false">69965@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;None of those will stop tabbing to the next form on the page.&#60;br /&#62;
Maybe disabling the tabindex to the submit button to -1 so the tabbing just stops tabbing on the focused form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-69948</link>
			<pubDate>Tue, 07 Aug 2012 14:57:24 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">69948@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Not sure if this is an option, but you could use this filter to change/disable tabbing on certain forms - but I don't know about &#34;stopping&#34; it in certain places. I have never tried that before.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_tabindex&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_tabindex&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RNickless on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-69943</link>
			<pubDate>Tue, 07 Aug 2012 14:52:46 +0000</pubDate>
			<dc:creator>RNickless</dc:creator>
			<guid isPermaLink="false">69943@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I understand tabindex. Are you familiar with a way to stop tabbing from moving to the next form on a page say at the submit button. I don't want tabbing to jump to the next form. I've put 3 forms in coda slider panels, and when it tabs to the next form it totally screws up the sliders panel line up. Trying to do a cool user &#34;select which form&#34; they need on a single page type of thing.&#60;br /&#62;
I understand if this is outside of scope. I would definitely share such an accomplishment with others.&#60;br /&#62;
Check it out: &#60;a href=&#34;http://gondolaskate.com/ace-hardware/&#34; rel=&#34;nofollow&#34;&#62;http://gondolaskate.com/ace-hardware/&#60;/a&#62;&#60;br /&#62;
password: password
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-69920</link>
			<pubDate>Tue, 07 Aug 2012 13:26:07 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">69920@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That is not how tabindex works. Tabindex goes through every element, not just form elements and moves through them for people that can't/won't use a mouse. You can't make it stop at any place.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>RNickless on "Do not want to tab to next form on a page, stop at submit for each form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/do-not-want-to-tab-to-next-form-on-a-page-stop-at-submit-for-each-form#post-69918</link>
			<pubDate>Tue, 07 Aug 2012 13:17:53 +0000</pubDate>
			<dc:creator>RNickless</dc:creator>
			<guid isPermaLink="false">69918@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I search all threads, documentation etc. and found how to get tab indexing to work correctly if you want to tab through from one form to the other, but in my case I do not want the tab indexing to jump to the next form, just stop at the submit. So in essence you must click on a field in that form to tab through it, and it stops at the submit. I can't find any jQuery to accomplish this either. It may be a focus control?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
