<?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: Highlighting the active field in the form, similar to how Wufoo does it</title>
		<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it</link>
		<description>Gravity Support Forums Topic: Highlighting the active field in the form, similar to how Wufoo does it</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:27:17 +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/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71224</link>
			<pubDate>Wed, 15 Aug 2012 19:25:44 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">71224@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Right on man, looks good.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gluethje on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71223</link>
			<pubDate>Wed, 15 Aug 2012 19:15:20 +0000</pubDate>
			<dc:creator>gluethje</dc:creator>
			<guid isPermaLink="false">71223@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Went with CSS3 animations for now. See it in action here:&#60;br /&#62;
&#60;a href=&#34;http://caferoka.com/dev/contact/&#34; rel=&#34;nofollow&#34;&#62;http://caferoka.com/dev/contact/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gluethje on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71162</link>
			<pubDate>Wed, 15 Aug 2012 13:11:28 +0000</pubDate>
			<dc:creator>gluethje</dc:creator>
			<guid isPermaLink="false">71162@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;EDIT: saw yours after I posted mine. Thanks for the reply. Looks like we we're going similar routes. I think mine may be more universally useful, since it's not relying in specific field IDs.&#60;/p&#62;
&#60;p&#62;OK, after some playing around I figured it out:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$(&#38;quot;input&#38;quot;).focus(function() {
    $(this).closest(&#38;quot;li&#38;quot;).addClass(&#38;quot;curFocus&#38;quot;)
});
$(&#38;quot;input&#38;quot;).blur(function() {
    $(this).closest(&#38;quot;li&#38;quot;).removeClass(&#38;quot;curFocus&#38;quot;)
});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now I need to do some CSS formatting and figure out how to get the backgrounds to fade in.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71158</link>
			<pubDate>Wed, 15 Aug 2012 12:23:07 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">71158@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This jQuery snippet worked for me: &#60;a href=&#34;http://pastie.org/4494466&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/4494466&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can just change the IDs of the inputs and fields accordingly and just chain them together with commas.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gluethje on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71156</link>
			<pubDate>Wed, 15 Aug 2012 12:08:38 +0000</pubDate>
			<dc:creator>gluethje</dc:creator>
			<guid isPermaLink="false">71156@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;As usual, I found an answer on CSS Tricks:&#60;br /&#62;
&#60;a href=&#34;http://css-tricks.com/improved-current-field-highlighting-in-forms/&#34; rel=&#34;nofollow&#34;&#62;http://css-tricks.com/improved-current-field-highlighting-in-forms/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The only issue is that in his example the input fields are only nested one deep iside of a div, and in GF they are nested several elements deep: li &#38;gt; div &#38;gt; span &#38;gt; input. I want to able to highlight the li.&#60;/p&#62;
&#60;p&#62;I guess it's time to get a little better with my jQuery...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gluethje on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71154</link>
			<pubDate>Wed, 15 Aug 2012 11:56:02 +0000</pubDate>
			<dc:creator>gluethje</dc:creator>
			<guid isPermaLink="false">71154@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here's a link to the form: &#60;a href=&#34;http://caferoka.com/dev/contact/&#34; rel=&#34;nofollow&#34;&#62;http://caferoka.com/dev/contact/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I know I can highlight the fields themselves with :focus. But to get the effect I'm looking for, I need to highlight the entire div/row that contains each field.&#60;/p&#62;
&#60;p&#62;I know this will require some js/jQuery, and I was wondering if anyone had already done something similar. I looked at Wufoo's js and could see the part that did this behavior, but I'm not good enough with scripting to reverse engineer it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71061</link>
			<pubDate>Tue, 14 Aug 2012 16:34:45 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">71061@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This can be done with some CSS - do you have a link to your form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gluethje on "Highlighting the active field in the form, similar to how Wufoo does it"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/highlighting-the-active-field-in-the-form-similar-to-how-wufoo-does-it#post-71058</link>
			<pubDate>Tue, 14 Aug 2012 16:17:00 +0000</pubDate>
			<dc:creator>gluethje</dc:creator>
			<guid isPermaLink="false">71058@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I would love to duplicate the highlighting that Wufoo does with the active/focused form fields. See this example:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://caferoka.com/contact.html&#34; rel=&#34;nofollow&#34;&#62;http://caferoka.com/contact.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Does this exist in Gravity forms, has anyone done it, or would it be hard to implement? Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
