<?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"
	>
<channel>
	<title>Comments on: Submit Form on Enter Key</title>
	<atom:link href="http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/feed/" rel="self" type="application/rss+xml" />
	<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/</link>
	<description></description>
	<pubDate>Wed, 20 Aug 2008 21:30:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: technimad</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-35394</link>
		<dc:creator>technimad</dc:creator>
		<pubDate>Tue, 05 Aug 2008 13:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-35394</guid>
		<description>Cool, thanks for sharing, this works really well for accessible websites. Create a funky submit button which does a javascript submit, and hide the normal submitbutton with this technique!

I've been using the style
[code]width: 0px; height: 0px; position: absolute; left: -500px; top: -500px;[\code]
to move the submitbutton completely offscreen (Safari still showed a dot). Works great in IE6 aswell.</description>
		<content:encoded><![CDATA[<p>Cool, thanks for sharing, this works really well for accessible websites. Create a funky submit button which does a javascript submit, and hide the normal submitbutton with this technique!</p>
<p>I&#8217;ve been using the style<br />
[code]width: 0px; height: 0px; position: absolute; left: -500px; top: -500px;[\code]<br />
to move the submitbutton completely offscreen (Safari still showed a dot). Works great in IE6 aswell.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-35289</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 31 Jul 2008 09:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-35289</guid>
		<description>Thanks, been wondering about this for a while and finally got round to fixing it.</description>
		<content:encoded><![CDATA[<p>Thanks, been wondering about this for a while and finally got round to fixing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonny</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-33377</link>
		<dc:creator>Jonny</dc:creator>
		<pubDate>Tue, 17 Jun 2008 21:44:38 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-33377</guid>
		<description>This worked best in Safari, Opera, Firefox and IE:

style="width: 0px; height: 0px; position: absolute; left: -50px; top: -50px;"

Absolute positioning became necessary because the button was still visible in Firefox and Safari and in particular Safari completely crashed when clicking the button having an empty value attribute.</description>
		<content:encoded><![CDATA[<p>This worked best in Safari, Opera, Firefox and IE:</p>
<p>style=&#8221;width: 0px; height: 0px; position: absolute; left: -50px; top: -50px;&#8221;</p>
<p>Absolute positioning became necessary because the button was still visible in Firefox and Safari and in particular Safari completely crashed when clicking the button having an empty value attribute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonny</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-33376</link>
		<dc:creator>Jonny</dc:creator>
		<pubDate>Tue, 17 Jun 2008 21:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-33376</guid>
		<description>Nope, just tried it, doesn't work in IE 7</description>
		<content:encoded><![CDATA[<p>Nope, just tried it, doesn&#8217;t work in IE 7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonny</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-33375</link>
		<dc:creator>Jonny</dc:creator>
		<pubDate>Tue, 17 Jun 2008 21:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-33375</guid>
		<description>So then try "visiblity: hidden", although that will leave an ugly block of whitespace in the way.</description>
		<content:encoded><![CDATA[<p>So then try &#8220;visiblity: hidden&#8221;, although that will leave an ugly block of whitespace in the way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grzegorz</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-32213</link>
		<dc:creator>Grzegorz</dc:creator>
		<pubDate>Tue, 27 May 2008 21:28:34 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-32213</guid>
		<description>It seems, that if you write:
style=”display:none” 
instead of:
style=”width:0px;height:0px;border:none”,
our favourite IE will ignore the input tag and enter key will not work.</description>
		<content:encoded><![CDATA[<p>It seems, that if you write:<br />
style=”display:none”<br />
instead of:<br />
style=”width:0px;height:0px;border:none”,<br />
our favourite IE will ignore the input tag and enter key will not work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Form not submitting on enter key with multiple form fields : Heck Of A World</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-26478</link>
		<dc:creator>Form not submitting on enter key with multiple form fields : Heck Of A World</dc:creator>
		<pubDate>Tue, 05 Feb 2008 02:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-26478</guid>
		<description>[...] So this is one of those really stupid things that was virtually impossible to find on google. One permutation was the golden child and brought me to this wonderful blog post. [...]</description>
		<content:encoded><![CDATA[<p>[...] So this is one of those really stupid things that was virtually impossible to find on google. One permutation was the golden child and brought me to this wonderful blog post. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paradox</title>
		<link>http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-25472</link>
		<dc:creator>Paradox</dc:creator>
		<pubDate>Tue, 15 Jan 2008 23:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://manfred.dschini.org/2007/09/20/submit-form-on-enter-key/#comment-25472</guid>
		<description>Never mind, instead of using: style="width:0px;height:0px;border:none" you can use style="display:none"</description>
		<content:encoded><![CDATA[<p>Never mind, instead of using: style=&#8221;width:0px;height:0px;border:none&#8221; you can use style=&#8221;display:none&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
