<?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>bug &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/bug/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>on web development</description>
	<lastBuildDate>Tue, 13 Feb 2018 08:18:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>Now jQuery 1.4.1 is released!</title>
		<link>/2010/01/26/now-jquery-1-4-1-is-released/</link>
		<comments>/2010/01/26/now-jquery-1-4-1-is-released/#respond</comments>
		<pubDate>Tue, 26 Jan 2010 12:16:21 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Software bug]]></category>

		<guid isPermaLink="false">/?p=969</guid>
		<description><![CDATA[As the jquery14.com says: &#8220;jQuery 1.4.1 is now out! This is the first bug fix release on top of jQuery 1.4, fixing some outstanding bugs from the 1.4 release and touching up some gaps in the API.&#8221; It&#8217;s good that the community responded so quickly to the new release!<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/01/15/jquery-1-4-released/" rel="bookmark" title="jQuery 1.4 released">jQuery 1.4 released </a></li>
<li><a href="/2010/02/22/jquery-1-4-2-comes-with-performance-improvements/" rel="bookmark" title="jQuery 1.4.2 comes with performance improvements!">jQuery 1.4.2 comes with performance improvements! </a></li>
<li><a href="/2010/01/19/performance-of-jquery-1-4/" rel="bookmark" title="Performance of jQuery 1.4">Performance of jQuery 1.4 </a></li>
<li><a href="/2009/03/19/jquery-ui/" rel="bookmark" title="JQuery UI">JQuery UI </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>As the <a title="jquery14.com" href="http://jquery14.com/day-12/jquery-141-released" target="_blank">jquery14.com</a> says: &#8220;jQuery 1.4.1 is now out! This is the first bug fix release on top of jQuery 1.4, fixing some outstanding bugs from the 1.4 release and touching up some gaps in the API.&#8221;</p>
<p>It&#8217;s good that the community responded so quickly to the new release!</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/01/15/jquery-1-4-released/" rel="bookmark" title="jQuery 1.4 released">jQuery 1.4 released </a></li>
<li><a href="/2010/02/22/jquery-1-4-2-comes-with-performance-improvements/" rel="bookmark" title="jQuery 1.4.2 comes with performance improvements!">jQuery 1.4.2 comes with performance improvements! </a></li>
<li><a href="/2010/01/19/performance-of-jquery-1-4/" rel="bookmark" title="Performance of jQuery 1.4">Performance of jQuery 1.4 </a></li>
<li><a href="/2009/03/19/jquery-ui/" rel="bookmark" title="JQuery UI">JQuery UI </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/01/26/now-jquery-1-4-1-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setAttribute(&#8216;class&#8217;) and IE</title>
		<link>/2009/09/07/setattributeclass-and-ie/</link>
		<comments>/2009/09/07/setattributeclass-and-ie/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 06:09:44 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[setAttribute]]></category>

		<guid isPermaLink="false">/?p=732</guid>
		<description><![CDATA[What happens on IE, our favorite browser, when you try to setup a class attribute on a DOM element? Actually this is not possible, because setAttribute(&#8216;class&#8217;, &#8216;my-class&#8217;) is obviously working only on non-IE browsers. On IE actually you should setup the class on an element with that structure: element.setAttribute('className', 'my-class');<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/" rel="bookmark" title="CSS Priority: The Difference Between a.my-class and .my-class">CSS Priority: The Difference Between a.my-class and .my-class </a></li>
<li><a href="/2009/12/23/csstext-and-how-it-can-be-very-very-useful/" rel="bookmark" title="cssText and how it can be very very useful">cssText and how it can be very very useful </a></li>
<li><a href="/2010/07/16/friday-algorithms-a-data-structure-javascript-stack/" rel="bookmark" title="Friday Algorithms: A Data Structure: JavaScript Stack">Friday Algorithms: A Data Structure: JavaScript Stack </a></li>
<li><a href="/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/" rel="bookmark" title="jQuery CSS selectors. Change one or more CSS properties!">jQuery CSS selectors. Change one or more CSS properties! </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>What happens on IE, our favorite browser, when you try to setup a class attribute on a DOM element? Actually this is not possible, because setAttribute(&#8216;class&#8217;, &#8216;my-class&#8217;) is obviously working only on non-IE browsers.</p>
<p>On IE actually you should setup the class on an element with that structure:</p>
<blockquote>
<pre>element.setAttribute('className', 'my-class');</pre>
</blockquote>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/" rel="bookmark" title="CSS Priority: The Difference Between a.my-class and .my-class">CSS Priority: The Difference Between a.my-class and .my-class </a></li>
<li><a href="/2009/12/23/csstext-and-how-it-can-be-very-very-useful/" rel="bookmark" title="cssText and how it can be very very useful">cssText and how it can be very very useful </a></li>
<li><a href="/2010/07/16/friday-algorithms-a-data-structure-javascript-stack/" rel="bookmark" title="Friday Algorithms: A Data Structure: JavaScript Stack">Friday Algorithms: A Data Structure: JavaScript Stack </a></li>
<li><a href="/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/" rel="bookmark" title="jQuery CSS selectors. Change one or more CSS properties!">jQuery CSS selectors. Change one or more CSS properties! </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/09/07/setattributeclass-and-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
