<?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>JQuery Attributes &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/jquery-attributes/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Sun, 31 May 2015 14:41:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>JQuery Attributes &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Select elements with a specific attribute using JQuery</title>
		<link>https://www.sibeeshpassion.com/select-elements-with-a-specific-attribute-using-jquery/</link>
					<comments>https://www.sibeeshpassion.com/select-elements-with-a-specific-attribute-using-jquery/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 14:41:52 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery Attributes]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3901</guid>

					<description><![CDATA[Here let us assume that we have an HTML mark up as follows [html] &#60;table Id=&#34;YearlyGridReport&#34;&#62; &#60;tr level=&#34;1&#34;&#62; &#60;td &#62;Header Row1&#60;/td&#62; &#60;th &#62;&#60;span&#62;2014&#60;/span&#62;&#60;/th&#62; &#60;th&#62;&#60;span&#62;2015&#60;/span&#62;&#60;/th&#62; &#60;/tr&#62; &#60;tr level=&#34;2&#34;&#62; &#60;td &#62;Header Row2&#60;/td&#62; &#60;th &#62;&#60;span&#62;2014&#60;/span&#62;&#60;/th&#62; &#60;th&#62;&#60;span&#62;2015&#60;/span&#62;&#60;/th&#62; &#60;/tr&#62; &#60;tr&#62; &#60;td &#62;Header Row2&#60;/td&#62; &#60;th &#62;&#60;span&#62;2014&#60;/span&#62;&#60;/th&#62; &#60;th&#62;&#60;span&#62;2015&#60;/span&#62;&#60;/th&#62; &#60;/tr&#62; &#8230;&#8230; &#60;/table&#62; [/html] Now what if to select the elements with the specific attribute. You can do that in the following way. [js] var levelselector = $(&#34;#YearlyGridReport tr[level]&#34;); var levelcount = levelselector.length; [/js]]]></description>
										<content:encoded><![CDATA[<p>Here let us assume that we have an HTML mark up as follows<br />
[html]<br />
&lt;table Id=&quot;YearlyGridReport&quot;&gt;<br />
    &lt;tr  level=&quot;1&quot;&gt;<br />
        &lt;td &gt;Header Row1&lt;/td&gt;<br />
        &lt;th &gt;&lt;span&gt;2014&lt;/span&gt;&lt;/th&gt;<br />
        &lt;th&gt;&lt;span&gt;2015&lt;/span&gt;&lt;/th&gt;<br />
    &lt;/tr&gt;<br />
    &lt;tr level=&quot;2&quot;&gt;<br />
        &lt;td &gt;Header Row2&lt;/td&gt;<br />
        &lt;th &gt;&lt;span&gt;2014&lt;/span&gt;&lt;/th&gt;<br />
        &lt;th&gt;&lt;span&gt;2015&lt;/span&gt;&lt;/th&gt;<br />
    &lt;/tr&gt;<br />
       &lt;tr&gt;<br />
        &lt;td &gt;Header Row2&lt;/td&gt;<br />
        &lt;th &gt;&lt;span&gt;2014&lt;/span&gt;&lt;/th&gt;<br />
        &lt;th&gt;&lt;span&gt;2015&lt;/span&gt;&lt;/th&gt;<br />
    &lt;/tr&gt;<br />
       &#8230;&#8230;<br />
&lt;/table&gt;<br />
[/html]  </p>
<p>Now what if to select the elements with the specific attribute. You can do that in the following way.<br />
[js]<br />
var levelselector = $(&quot;#YearlyGridReport tr[level]&quot;);<br />
var levelcount = levelselector.length;<br />
[/js]</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/select-elements-with-a-specific-attribute-using-jquery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove an attribute from an html element</title>
		<link>https://www.sibeeshpassion.com/remove-an-attribute-from-an-html-element/</link>
					<comments>https://www.sibeeshpassion.com/remove-an-attribute-from-an-html-element/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 13:29:59 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery Attributes]]></category>
		<category><![CDATA[Remove attribute]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3061</guid>

					<description><![CDATA[Remove an attribute from an html element . [js] $(&#8216;#btnCreate&#8217;).removeAttr(&#8216;disabled&#8217;); [/js] Here I am removing the attribute disabled from the element btnCreate. Regards www.sibeeshpassion.com]]></description>
										<content:encoded><![CDATA[<p>Remove an attribute from an html element .<br />
[js]<br />
$(&#8216;#btnCreate&#8217;).removeAttr(&#8216;disabled&#8217;);<br />
[/js]<br />
Here I am removing the attribute disabled from the element  btnCreate.</p>
<p>Regards<br />
<a href="http://www.sibeeshpassion.com">www.sibeeshpassion.com </a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/remove-an-attribute-from-an-html-element/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
