<?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: jQuery radiobutton</title>
		<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton</link>
		<description>Gravity Support Forums Topic: jQuery radiobutton</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:22:34 +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/jquery-radiobutton" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95702</link>
			<pubDate>Mon, 26 Nov 2012 10:48:36 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">95702@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks richardvav!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95667</link>
			<pubDate>Mon, 26 Nov 2012 09:02:33 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">95667@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No problem, glad you got it working
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ketiga on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95623</link>
			<pubDate>Mon, 26 Nov 2012 06:17:23 +0000</pubDate>
			<dc:creator>Ketiga</dc:creator>
			<guid isPermaLink="false">95623@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Works like a charm!&#60;/p&#62;
&#60;p&#62;Thank you very much, this is great :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95601</link>
			<pubDate>Mon, 26 Nov 2012 05:58:33 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">95601@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You don't really need the html fields to open and close a div around your radio button field, all you need is to find out the id's for the ul that contains your radio buttons so in the example below I am defining inputs 10 and 13 of form 1 as jquery ui buttonsets&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$(document).ready(function(){$(&#38;quot;#input_1_10,#input_1_13&#38;quot;).buttonset();&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ketiga on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95584</link>
			<pubDate>Mon, 26 Nov 2012 05:30:51 +0000</pubDate>
			<dc:creator>Ketiga</dc:creator>
			<guid isPermaLink="false">95584@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The site isn't live yet, but I'll try and explain what I've done:&#60;/p&#62;
&#60;p&#62;At this point I am just wondering if I can get the radiobuttons to be more like buttons so on mobile devices you can click a larger area and navigating becomes a bit easier.&#60;/p&#62;
&#60;p&#62;Here's my code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;link rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css&#38;quot; /&#38;gt;
    &#38;lt;script src=&#38;quot;http://code.jquery.com/ui/1.9.1/jquery-ui.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
   &#38;lt;script&#38;gt;
  jQuery(document).ready(function() {
  jQuery( &#38;quot;#radio_button&#38;quot; ).buttonset();
  });
  &#38;lt;/script&#38;gt;

&#38;lt;form&#38;gt;
&#38;lt;div id=&#38;quot;radio_button&#38;quot;&#38;gt;
    &#38;lt;input type=&#38;quot;radio&#38;quot; id=&#38;quot;button1&#38;quot; name=&#38;quot;test&#38;quot; /&#38;gt;&#38;lt;label for=&#38;quot;button1&#38;quot;&#38;gt;button1&#38;lt;/label&#38;gt;
    &#38;lt;input type=&#38;quot;radio&#38;quot; id=&#38;quot;button2&#38;quot; name=&#38;quot;test&#38;quot; /&#38;gt;&#38;lt;label for=&#38;quot;button2&#38;quot;&#38;gt;button2&#38;lt;/label&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/form&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This works perfectly when just copied and pasted in a wordpress page.&#60;/p&#62;
&#60;p&#62;When I try and use the very same code in a gravity form though it doesn't.&#60;/p&#62;
&#60;p&#62;The only change I make is that I put this part:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;radio_button&#38;quot;&#38;gt;

&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In html blocks before and after my radiobutton fields.&#60;/p&#62;
&#60;p&#62;Why wouldn't this work?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95352</link>
			<pubDate>Sun, 25 Nov 2012 14:33:01 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">95352@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Bart,&#60;/p&#62;
&#60;p&#62;Could you post a link to the page your form is on, so we can get a look at what you have so far and where the problem may be
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ketiga on "jQuery radiobutton"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/jquery-radiobutton#post-95169</link>
			<pubDate>Sat, 24 Nov 2012 14:17:59 +0000</pubDate>
			<dc:creator>Ketiga</dc:creator>
			<guid isPermaLink="false">95169@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am trying to make my gravity forms radio buttons (and checkboxes) to look like this jQuery example:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://jqueryui.com/button/#radio&#34; rel=&#34;nofollow&#34;&#62;http://jqueryui.com/button/#radio&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I can't get it to work though. I does work when I use pure html but not in combination with the gravity forms radiobuttons.&#60;/p&#62;
&#60;p&#62;Really would appreciate someone pointing me in the right direction or providing a working example in Gravity Forms.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Bart
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
