<?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: .serializeArray()</title>
	<atom:link href="http://api.jquery.com/serializeArray/feed/" rel="self" type="application/rss+xml" />
	<link>http://api.jquery.com/serializeArray/</link>
	<description>jQuery API Reference</description>
	<lastBuildDate>Fri, 19 Aug 2011 09:06:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Formyjuckmail</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-8462</link>
		<dc:creator>Formyjuckmail</dc:creator>
		<pubDate>Thu, 20 Jan 2011 04:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-8462</guid>
		<description>once you have your form in a json object how do you grap values out of it? I was trying to use $.getJson() but theres no URL and I only want to find a single value from the Json</description>
		<content:encoded><![CDATA[<p>once you have your form in a json object how do you grap values out of it? I was trying to use $.getJson() but theres no URL and I only want to find a single value from the Json</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arjen Oosterkamp</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-8393</link>
		<dc:creator>Arjen Oosterkamp</dc:creator>
		<pubDate>Mon, 17 Jan 2011 23:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-8393</guid>
		<description>The following code will serialize for use with JSON:&lt;br&gt;&lt;br&gt;&lt;br&gt;(function( $ ){&lt;br&gt;	$.fn.serializeJSON=function() {&lt;br&gt;		var json = {};&lt;br&gt;		jQuery.map($(this).serializeArray(), function(n, i){&lt;br&gt;			json[n[&#039;name&#039;]] = n[&#039;value&#039;];&lt;br&gt;		});&lt;br&gt;		return json;&lt;br&gt;	};&lt;br&gt;})( jQuery );&lt;br&gt;&lt;br&gt;Simply use as $(&#039;form&#039;).serializeJSON();</description>
		<content:encoded><![CDATA[<p>The following code will serialize for use with JSON:</p>
<p>(function( $ ){<br />	$.fn.serializeJSON=function() {<br />		var json = {};<br />		jQuery.map($(this).serializeArray(), function(n, i){<br />			json[n[&#39;name&#39;]] = n[&#39;value&#39;];<br />		});<br />		return json;<br />	};<br />})( jQuery );</p>
<p>Simply use as $(&#39;form&#39;).serializeJSON();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-7926</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Thu, 02 Dec 2010 05:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-7926</guid>
		<description>Good point. I changed it to console.log, and added a note about browser support of that function.</description>
		<content:encoded><![CDATA[<p>Good point. I changed it to console.log, and added a note about browser support of that function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-7315</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Wed, 01 Dec 2010 21:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-7315</guid>
		<description>Good point. I changed it to console.log, and added a note about browser support of that function.</description>
		<content:encoded><![CDATA[<p>Good point. I changed it to console.log, and added a note about browser support of that function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teo</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-7285</link>
		<dc:creator>teo</dc:creator>
		<pubDate>Tue, 30 Nov 2010 17:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-7285</guid>
		<description>Regarding the example:&lt;br&gt;&lt;br&gt;$(&#039;form&#039;).submit(function() {&lt;br&gt;  alert($(this).serializeArray());&lt;br&gt;  return false;&lt;br&gt;});&lt;br&gt;&lt;br&gt;Since there is an alert() statement in the example, the sentence &quot;This produces the following data structure&quot; may induce to think that that is actually what you will see in the alert dialog, while it will just show &quot;[object Object]&quot;</description>
		<content:encoded><![CDATA[<p>Regarding the example:</p>
<p>$(&#39;form&#39;).submit(function() {<br />  alert($(this).serializeArray());<br />  return false;<br />});</p>
<p>Since there is an alert() statement in the example, the sentence &#8220;This produces the following data structure&#8221; may induce to think that that is actually what you will see in the alert dialog, while it will just show &#8220;[object Object]&#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guest</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-7083</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Fri, 19 Nov 2010 01:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-7083</guid>
		<description>How about field values such as %, $ and &amp;?&lt;br&gt;&lt;br&gt;When I try serializing these values I get an error :(</description>
		<content:encoded><![CDATA[<p>How about field values such as %, $ and &amp;?</p>
<p>When I try serializing these values I get an error <img src='http://api.jquery.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-7070</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Thu, 18 Nov 2010 15:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-7070</guid>
		<description>&lt;a href=&quot;http://api.jquery.com/jQuery.post&quot; rel=&quot;nofollow&quot;&gt;http://api.jquery.com/jQuery.post&lt;/a&gt;/</description>
		<content:encoded><![CDATA[<p><a href="http://api.jquery.com/jQuery.post" rel="nofollow">http://api.jquery.com/jQuery.post</a>/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-6889</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Tue, 09 Nov 2010 15:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-6889</guid>
		<description>How I send the created array to my controller?&lt;br&gt;Im using Java + jsp.&lt;br&gt;And have some way to send the array with only the values and not the name?</description>
		<content:encoded><![CDATA[<p>How I send the created array to my controller?<br />Im using Java + jsp.<br />And have some way to send the array with only the values and not the name?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Najeeb Ahmd</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-6732</link>
		<dc:creator>Najeeb Ahmd</dc:creator>
		<pubDate>Mon, 01 Nov 2010 02:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-6732</guid>
		<description>How i will get the posted values in process.php?</description>
		<content:encoded><![CDATA[<p>How i will get the posted values in process.php?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle Florence</title>
		<link>http://api.jquery.com/serializeArray/comment-page-1/#comment-5499</link>
		<dc:creator>Kyle Florence</dc:creator>
		<pubDate>Thu, 09 Sep 2010 16:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=417#comment-5499</guid>
		<description>Just in case anyone was wondering, this function supports all the new HTML 5 type attributes, as seen by the regex match they use:&lt;br&gt;&lt;br&gt;rinput = /color&#124;date&#124;datetime&#124;email&#124;hidden&#124;month&#124;number&#124;password&#124;range&#124;search&#124;tel&#124;text&#124;time&#124;url&#124;week/i</description>
		<content:encoded><![CDATA[<p>Just in case anyone was wondering, this function supports all the new HTML 5 type attributes, as seen by the regex match they use:</p>
<p>rinput = /color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i</p>
]]></content:encoded>
	</item>
</channel>
</rss>

