<?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>programcreek.com &#187; JQuery</title>
	<atom:link href="http://www.programcreek.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programcreek.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 23:15:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Enable lightbox effect for WordPress NextGen Gallery Plugin</title>
		<link>http://www.programcreek.com/2011/07/enable-lightbox-effect-for-wordpress-nextgen-gallery-plugin/</link>
		<comments>http://www.programcreek.com/2011/07/enable-lightbox-effect-for-wordpress-nextgen-gallery-plugin/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 13:44:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=3108</guid>
		<description><![CDATA[The Lightbox effect in NextGen Gallery is actually not working. To enable lightbox effect, there is another plugin which works for NextGen Gallery &#8211; slimbox. Just search &#8220;slimbox&#8221;, and enable this plugin. Then enable lightbox effect for under NextGen Gallery options->effects. Also to use lighbox, it&#8217;s a good idea to resize image to 800*600 by [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2011/07/enable-lightbox-effect-for-wordpress-nextgen-gallery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use JQuery Ajax to load static html page to a div tag</title>
		<link>http://www.programcreek.com/2010/01/use-jquery-ajax-to-load-static-html-page-to-a-div-tag/</link>
		<comments>http://www.programcreek.com/2010/01/use-jquery-ajax-to-load-static-html-page-to-a-div-tag/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 02:46:27 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Ajax load html]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=1217</guid>
		<description><![CDATA[In one of my projects, I need to add several static pages to it. Those pages are static html and will not need update. To make this separate from the main project which has a good MVC structure, I use JQuery&#8217;s Ajax function to load those static pages. First of all, here is a menu [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2010/01/use-jquery-ajax-to-load-static-html-page-to-a-div-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reload Javascript and rebind elements when using JQuery</title>
		<link>http://www.programcreek.com/2009/10/reload-javascript-and-rebind-elements-when-using-jquery/</link>
		<comments>http://www.programcreek.com/2009/10/reload-javascript-and-rebind-elements-when-using-jquery/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 02:34:16 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery rebind elements]]></category>
		<category><![CDATA[reload javascript]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=1072</guid>
		<description><![CDATA[I was doing a simple JQuery program. I need to add new rows and there is a delete button in each of them. The &#8220;delete&#8221; link is for deleting using Ajax. There is no problem for me to add a row using JQuery Ajax function. But the &#8220;delete&#8221; link in the newly added rows doesn&#8217;t [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2009/10/reload-javascript-and-rebind-elements-when-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery get selected radio value</title>
		<link>http://www.programcreek.com/2009/10/jquery-get-selected-radio-value/</link>
		<comments>http://www.programcreek.com/2009/10/jquery-get-selected-radio-value/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 00:29:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[get selected radio button's value in JQuery]]></category>
		<category><![CDATA[JQuery get radio button's value]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=1051</guid>
		<description><![CDATA[Here is the html code. &#60;input type=&#34;radio&#34; name=&#34;sex&#34; value=&#34;0&#34; /&#62; &#60;input type=&#34;radio&#34; name=&#34;sex&#34; value=&#34;1&#34; /&#62; When one of them is selected, we can use the following code to get the value. $&#40;&#34;input[@name='sex']&#34;&#41;.change&#40;function&#40;&#41;&#123; if &#40;$&#40;&#34;input[@name='sex']:checked&#34;&#41;.val&#40;&#41;&#41; alert&#40;&#34;female&#34;&#41;; else alert&#40;&#34;male&#34;&#41;; &#125;&#41;; Of course, you can use JQuery&#8217;s form plugin, but to get a radio&#8217;s value, there is no [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2009/10/jquery-get-selected-radio-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript String Empty Check</title>
		<link>http://www.programcreek.com/2009/10/javascript-string-empty-check/</link>
		<comments>http://www.programcreek.com/2009/10/javascript-string-empty-check/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 23:19:22 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript String Empty Check]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=1040</guid>
		<description><![CDATA[What&#8217;s the best way to check for an empty string in Javascript? If you just want to check whether there&#8217;s any value, you can do if&#40;!parameter&#41;&#123; //if id is empty, do something &#125; Here is an example using JQuery to select an element with id name of id. if&#40;!$&#40;&#34;#id&#34;&#41;.val&#40;&#41;&#41;&#123; //if id is empty //be careful [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2009/10/javascript-string-empty-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to select elements but exclude a string or exclude an element by using JQuery</title>
		<link>http://www.programcreek.com/2009/08/how-to-select-elements-but-excluding-a-string-or-exclude-an-element/</link>
		<comments>http://www.programcreek.com/2009/08/how-to-select-elements-but-excluding-a-string-or-exclude-an-element/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 02:58:35 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[exclude a string]]></category>
		<category><![CDATA[exclude an element]]></category>
		<category><![CDATA[exclude this jquery]]></category>
		<category><![CDATA[how to select element excluding a string]]></category>
		<category><![CDATA[select elements exluding a string]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=817</guid>
		<description><![CDATA[Here is the code: &#60;div class=&#34;content&#34;&#62; &#60;a href=&#34;#&#34;&#62;A&#60;/a&#62;&#60;/div&#62; &#60;div class=&#34;content&#34;&#62; &#60;a href=&#34;#&#34;&#62;B&#60;/a&#62;&#60;/div&#62; &#60;div class=&#34;content&#34;&#62; &#60;a href=&#34;#&#34;&#62;C&#60;/a&#62;&#60;/div&#62; When one of these links is clicked, I want to perform the .hide() function on the links that are not clicked. I understand jQuery has the :not selector, but I can&#8217;t figure out how to use it in this [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2009/08/how-to-select-elements-but-excluding-a-string-or-exclude-an-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

