<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: jQuery imageless buttons a la Google get an update</title>
	<atom:link href="http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/feed" rel="self" type="application/rss+xml" />
	<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622</link>
	<description>A blog about life, the universe and everything else</description>
	<lastBuildDate>Fri, 26 Feb 2010 09:32:48 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hakan</title>
		<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/comment-page-1#comment-2229</link>
		<dc:creator>Hakan</dc:creator>
		<pubDate>Fri, 22 Jan 2010 21:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=622#comment-2229</guid>
		<description>(Sorry for this little flood :))

How can i work on an class or ID which i selected:

{html}{head}{script href=&quot;imageless.buttons.js&quot;}.....{body}
{div id=&quot;mybutton&quot;}asd{/div}....{/html}

is it possible to show the mybutton div like a button with this plugin?</description>
		<content:encoded><![CDATA[<p>(Sorry for this little flood <img src='http://swizec.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>How can i work on an class or ID which i selected:</p>
<p>{html}{head}{script href=&#8221;imageless.buttons.js&#8221;}&#8230;..{body}<br />
{div id=&#8221;mybutton&#8221;}asd{/div}&#8230;.{/html}</p>
<p>is it possible to show the mybutton div like a button with this plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hakan</title>
		<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/comment-page-1#comment-2228</link>
		<dc:creator>Hakan</dc:creator>
		<pubDate>Fri, 22 Jan 2010 21:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=622#comment-2228</guid>
		<description>How can i work on an class or ID which i selected:



asd.......

is it possible to show the mybutton div like a button with this plugin?</description>
		<content:encoded><![CDATA[<p>How can i work on an class or ID which i selected:</p>
<p>asd&#8230;&#8230;.</p>
<p>is it possible to show the mybutton div like a button with this plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geert</title>
		<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/comment-page-1#comment-2068</link>
		<dc:creator>Geert</dc:creator>
		<pubDate>Wed, 18 Nov 2009 21:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=622#comment-2068</guid>
		<description>Great work! Thanks

However I&#039;m using the dropstyle type button to display a list of links. However if I click one of the links nothing happens and I fail to see why.

Best regards
Geert</description>
		<content:encoded><![CDATA[<p>Great work! Thanks</p>
<p>However I&#8217;m using the dropstyle type button to display a list of links. However if I click one of the links nothing happens and I fail to see why.</p>
<p>Best regards<br />
Geert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glen</title>
		<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/comment-page-1#comment-1887</link>
		<dc:creator>Glen</dc:creator>
		<pubDate>Mon, 31 Aug 2009 20:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=622#comment-1887</guid>
		<description>@Liam:

I&#039;m using these buttons to submit a form. Try something like:

	$(&quot;span.submit&quot;).styledButton({
		&#039;orientation&#039; : &#039;left&#039;
	});
	
	$(&quot;span.submit&quot;).click(function () {
		$(&quot;form:first&quot;).submit();
	});</description>
		<content:encoded><![CDATA[<p>@Liam:</p>
<p>I&#8217;m using these buttons to submit a form. Try something like:</p>
<p>	$(&#8220;span.submit&#8221;).styledButton({<br />
		&#8216;orientation&#8217; : &#8216;left&#8217;<br />
	});</p>
<p>	$(&#8220;span.submit&#8221;).click(function () {<br />
		$(&#8220;form:first&#8221;).submit();<br />
	});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liam</title>
		<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/comment-page-1#comment-1862</link>
		<dc:creator>Liam</dc:creator>
		<pubDate>Wed, 26 Aug 2009 15:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=622#comment-1862</guid>
		<description>Hi,

Have you, or anyone, managed to get these to work as form submit buttons? I tried adding the following to the action arg:

$(this).parents(&#039;form&#039;).submit();

But it wasn&#039;t actually submitting the form. I&#039;ve checked the usual bugs, i.e. having an input named &#039;submit&#039; but I&#039;ve ran out of ideas? 

The method I was using for non-JS fallback was to hide the normal submit button in the Javascript and show my new &#039;submit&#039; span button. Just in case this affects things.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Have you, or anyone, managed to get these to work as form submit buttons? I tried adding the following to the action arg:</p>
<p>$(this).parents(&#8216;form&#8217;).submit();</p>
<p>But it wasn&#8217;t actually submitting the form. I&#8217;ve checked the usual bugs, i.e. having an input named &#8217;submit&#8217; but I&#8217;ve ran out of ideas? </p>
<p>The method I was using for non-JS fallback was to hide the normal submit button in the Javascript and show my new &#8217;submit&#8217; span button. Just in case this affects things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea</title>
		<link>http://swizec.com/blog/jquery-imageless-buttons-a-la-google-get-an-update/swizec/622/comment-page-1#comment-1389</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Mon, 13 Jul 2009 07:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://swizec.com/blog/?p=622#comment-1389</guid>
		<description>On the latest dev Chrome some buttons on the demo are two lines tall, breaking the layout.</description>
		<content:encoded><![CDATA[<p>On the latest dev Chrome some buttons on the demo are two lines tall, breaking the layout.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
