<?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>Interview Questions &#187; JQuery</title>
	<atom:link href="http://www.phpinterviewquestion.com/category/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phpinterviewquestion.com</link>
	<description>Interview Questions</description>
	<lastBuildDate>Sun, 27 Nov 2011 16:32:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>What is jQuery ?</title>
		<link>http://www.phpinterviewquestion.com/jquery/what-is-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/what-is-jquery#comments</comments>
		<pubDate>Wed, 16 Mar 2011 09:06:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=1099</guid>
		<description><![CDATA[It&#8217;s very simple but most valuable Question on jQuery means jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, animating, event handling, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. jQuery is build library for javascript no need to write your [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/what-is-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>change the URL for a Hyperlink using jQuery</title>
		<link>http://www.phpinterviewquestion.com/jquery/change-the-url-for-a-hyperlink-using-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/change-the-url-for-a-hyperlink-using-jquery#comments</comments>
		<pubDate>Thu, 05 Aug 2010 09:15:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=871</guid>
		<description><![CDATA[There are three way to change the URL for a Hyperlink using jQuery. 1- $("a").attr("href", "http://www.phpinterviewquestion.com/"); 2- $("a[href='http://www.phpinterviewquestion.com/']") .attr('href', 'http://phpinterviewquestion.com/'); 3- $("a[href^='http://phpinterviewquestion.com']").each(function(){       this.href = this.href.replace(/^http:\/\/beta\.phpinterviewquestion\.com/,  "http://phpinterviewquestion.com");    });]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/change-the-url-for-a-hyperlink-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check or Uncheck All Checkboxes using jquery</title>
		<link>http://www.phpinterviewquestion.com/jquery/check-or-uncheck-all-checkboxes-using-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/check-or-uncheck-all-checkboxes-using-jquery#comments</comments>
		<pubDate>Wed, 04 Aug 2010 12:53:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=863</guid>
		<description><![CDATA[There  are different methods to check and uncheck the check boxes. suppose that you have checkboxes like that &#60;input type=&#8221;checkbox&#8221;  value=&#8221;1&#8243; name=&#8221;Items&#8221;  id=&#8221;Items1&#8243; /&#62; &#60;input type=&#8221;checkbox&#8221;  value=&#8221;2&#8243; name=&#8221;Items&#8221;  id=&#8221;Items2&#8243; /&#62; &#60;input type=&#8221;checkbox&#8221;  value=&#8221;3&#8243; name=&#8221;Items&#8221;  id=&#8221;Items3&#8243; /&#62; &#60;input type=&#8221;checkbox&#8221;  value=&#8221;1&#8243; name=&#8221;Items&#8221;  id=&#8221;Items4&#8243; /&#62; 1- using attr() function. $(&#8216;#checkall&#8217;).click(function(){ $(&#8220;input[@name='Items']:checked&#8221;).attr(&#8216;checked&#8217;,true); }); $(&#8216;#uncheckall&#8217;).click(function(){ $(&#8220;input[@name='Items']:checked&#8221;).attr(&#8216;checked&#8217;,false);}); 2- using attr() and [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/check-or-uncheck-all-checkboxes-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fetch the values of selected checkbox array using JQuery</title>
		<link>http://www.phpinterviewquestion.com/jquery/fetch-the-values-of-selected-checkbox-array-using-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/fetch-the-values-of-selected-checkbox-array-using-jquery#comments</comments>
		<pubDate>Wed, 04 Aug 2010 08:59:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[selected checkbox array]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=860</guid>
		<description><![CDATA[Suppose that below is checkbox array &#60;input type=&#8221;checkbox&#8221;  value=&#8221;1&#8243; name=&#8221;Items[]&#8220;  id=&#8221;Items1&#8243; /&#62; &#60;input type=&#8221;checkbox&#8221;  value=&#8221;2&#8243; name=&#8221;Items[]&#8220;  id=&#8221;Items2&#8243; /&#62; &#60;input type=&#8221;checkbox&#8221;  value=&#8221;3&#8243; name=&#8221;Items[]&#8220;  id=&#8221;Items3&#8243; /&#62; &#60;input type=&#8221;checkbox&#8221;  value=&#8221;1&#8243; name=&#8221;Items[]&#8220;  id=&#8221;Items4&#8243; /&#62; and we want the get the value of selected checkbox using jquery. then simple use below code. var selItems = new Array]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/fetch-the-values-of-selected-checkbox-array-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How we can apply css in multiple Selectors in jquery.</title>
		<link>http://www.phpinterviewquestion.com/jquery/how-we-can-apply-css-in-multiple-selectors-in-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/how-we-can-apply-css-in-multiple-selectors-in-jquery#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:23:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[multiple Selectors in jquery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=646</guid>
		<description><![CDATA[Here  to take effect is example to demonstrate $(&#8220;div,span,p.myClass&#8221;).css(&#8220;border&#8221;,&#8221;1px solid green&#8221;); the border will be apply in all div,span ,p.myClass class element.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/how-we-can-apply-css-in-multiple-selectors-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How we can modify the css class in jquery.</title>
		<link>http://www.phpinterviewquestion.com/jquery/how-we-can-modify-the-css-class-in-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/how-we-can-modify-the-css-class-in-jquery#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:17:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Modify the css class in jquery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=642</guid>
		<description><![CDATA[Using css method we can modify class using jquery example:$(&#8220;.CssClass1.CssClass2&#8243;).css(&#8220;border&#8221;,&#8221;1px solid green&#8221;); CssClass1,CssClass2 will be modify to border  1px solid green.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/how-we-can-modify-the-css-class-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can we apply css in div using jquery.</title>
		<link>http://www.phpinterviewquestion.com/jquery/how-can-we-apply-css-in-div-using-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/how-can-we-apply-css-in-div-using-jquery#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:13:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=639</guid>
		<description><![CDATA[using css() method we can apply css in div element. example: $(&#8220;div&#8221;).css(&#8220;border&#8221;,&#8221;1px solid green&#8221;);]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/how-can-we-apply-css-in-div-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get the value of selected option in jquery</title>
		<link>http://www.phpinterviewquestion.com/jquery/get-the-value-of-selected-option-in-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/get-the-value-of-selected-option-in-jquery#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:07:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[get the value of selected option in jquery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=637</guid>
		<description><![CDATA[suppose that below is  the  selectbox/combobox &#60;select id="sel"&#62; &#60;option value ="1"&#62;Hi&#60;/option&#62; &#60;option value="2"&#62;Hello&#60;/option&#62; &#60;option value="3"&#62;Helloooooo&#60;/option&#62; &#60;option value="4"&#62;ok&#60;/option&#62; &#60;option value="5"&#62;Okey&#60;/option&#62; &#60;/select&#62; want to get the value of selected option, then use $("select#sel").val(); or text of selected box, then use $("#seloption:selected").text(); Example Hi Hello Helloooooo ok Okey]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/get-the-value-of-selected-option-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>check/uncheck an input in jquery?</title>
		<link>http://www.phpinterviewquestion.com/jquery/checkuncheck-an-input-in-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/checkuncheck-an-input-in-jquery#comments</comments>
		<pubDate>Wed, 20 Jan 2010 17:22:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=635</guid>
		<description><![CDATA[Using two function, we can perform the operation. // Check #x $(&#8220;#checkboxid&#8221;).attr(&#8220;checked&#8221;, &#8220;checked&#8221;); // Uncheck #x $(&#8220;#checkboxid&#8221;).removeAttr(&#8220;checked&#8221;); Example]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/checkuncheck-an-input-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>disable/enable an element in jquery?</title>
		<link>http://www.phpinterviewquestion.com/jquery/disableenable-an-element-in-jquery</link>
		<comments>http://www.phpinterviewquestion.com/jquery/disableenable-an-element-in-jquery#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:30:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[disable/enable an element in jquery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=631</guid>
		<description><![CDATA[you can disable/enable web element using attr and removeAttr functions respectively // Disable #x $(&#8220;#x&#8221;).attr(&#8220;disabled&#8221;,&#8221;disabled&#8221;); // Enable #x $(&#8220;#x&#8221;).removeAttr(&#8220;disabled&#8221;); Example: one two type=&#8221;button&#8221; value=&#8221;Disable&#8221; onclick=&#8221;$(&#8216;#x&#8217;).attr(&#8216;disabled&#8217;,'disabled&#8217;)&#8221;/&#62;]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/disableenable-an-element-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I determine the state of a toggled element?</title>
		<link>http://www.phpinterviewquestion.com/jquery/how-do-i-determine-the-state-of-a-toggled-element</link>
		<comments>http://www.phpinterviewquestion.com/jquery/how-do-i-determine-the-state-of-a-toggled-element#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:26:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[toggled element in jquery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=629</guid>
		<description><![CDATA[Here is the example of toggled element using the  :visible or :hidden selectors. var vis = $(&#8216;#formdiv&#8217;).is(&#8216;:visible&#8217;); var hide= $(&#8216;#formdiv&#8217;).is(&#8216;:hidden&#8217;); If you want to show a div visibility,  then there is example for this For example: $(&#8216;#formdiv:visible&#8217;).animate({left: &#8216;+=100px&#8217;}, &#8216;slow&#8217;);]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/how-do-i-determine-the-state-of-a-toggled-element/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I test whether an element exists?</title>
		<link>http://www.phpinterviewquestion.com/jquery/how-do-i-test-whether-an-element-exists</link>
		<comments>http://www.phpinterviewquestion.com/jquery/how-do-i-test-whether-an-element-exists#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:59:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=627</guid>
		<description><![CDATA[* You can use the length property of the jQuery collection returned by your selector: should i take if ( $(&#8216;#myDiv&#8217;).length) $(&#8216;#myDiv&#8217;).show(); Note: It isn&#8217;t always necessary to test whether an element exists.The following code would show the item if it exists, and do nothing (no errors) if  it did not: $(&#8216;#myDiv&#8217;).show();]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/how-do-i-test-whether-an-element-exists/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I test whether an element has a particular class?</title>
		<link>http://www.phpinterviewquestion.com/jquery/how-do-i-test-whether-an-element-has-a-particular-class</link>
		<comments>http://www.phpinterviewquestion.com/jquery/how-do-i-test-whether-an-element-has-a-particular-class#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:58:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=625</guid>
		<description><![CDATA[* You can use the is() method along with an appropriate selector if ( $(&#8216;#myDiv&#8217;).is(&#8216;.pretty&#8217;) ) $(&#8216;#myDiv&#8217;).show(); Note that this method allows you to  test for other things as well. For example, you can test whether an element is hidden (by using the custom :hidden selector): if ( $(&#8216;#myDiv&#8217;).is(&#8216;:hidden&#8217;) ) $(&#8216;#myDiv&#8217;).show(); * Note  also that [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/jquery/how-do-i-test-whether-an-element-has-a-particular-class/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can we repair a MySQL table?</title>
		<link>http://www.phpinterviewquestion.com/php-questions/how-can-we-repair-a-mysql-table</link>
		<comments>http://www.phpinterviewquestion.com/php-questions/how-can-we-repair-a-mysql-table#comments</comments>
		<pubDate>Sun, 10 Jan 2010 09:25:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[How can we repair a MySQL table]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=522</guid>
		<description><![CDATA[There are three syntax  to repair MySQL table. REPAIR TABLE table_name REPAIR TABLE table_name QUICK REPAIR TABLE table_name EXTENDED If QUICK is given, MySQL will repair index tree. If EXTENDED is given, it will create index row by row.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/php-questions/how-can-we-repair-a-mysql-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.phpinterviewquestion.com @ 2012-02-06 06:21:22 -->
