<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jfine.org &#187; Hints</title>
	<atom:link href="http://jfine.org/tag/hints/feed" rel="self" type="application/rss+xml" />
	<link>http://jfine.org</link>
	<description>Compartmentalized for your viewing pleasure.</description>
	<lastBuildDate>Mon, 23 Aug 2010 15:43:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Javascript Error: submit is not a function</title>
		<link>http://jfine.org/javascript-error-submit-is-not-a-function?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=javascript-error-submit-is-not-a-function</link>
		<comments>http://jfine.org/javascript-error-submit-is-not-a-function#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:12:24 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://jfine.org/?p=42</guid>
		<description><![CDATA[I ran into an annoying namespace issue with JavaScript. When trying to submit() a form I received a &#8220;submit is not a function&#8221; error. Simply put the error occurs because your form has a element in it with the id of submit. In my case it was my submit button. &#60;input type="submit" name="submit" id="submit" value="Go" /&#62; Changing [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into an annoying namespace issue with JavaScript. When trying to submit() a form I received a &#8220;submit is not a function&#8221; error. Simply put the error occurs because your form has a element in it with the id of submit.</p>
<p>In my case it was my submit button.</p>
<pre>&lt;input type="submit" name="submit" id="submit" value="Go" /&gt;</pre>
<p>Changing the id (and name) resolved the issue.</p>
<pre>&lt;input type="submit" name="go" id="go" value="Go" /&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://jfine.org/javascript-error-submit-is-not-a-function/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

