<?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>firefox | Woody Hayday | Blog</title>
	<atom:link href="https://blog.woodylabs.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.woodylabs.com</link>
	<description>An exploration of life, technology and writing</description>
	<lastBuildDate>Tue, 13 Jan 2015 15:19:04 +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>https://blog.woodylabs.com/wp-content/uploads/2015/01/cropped-woody-hayday-yosemite-glacier-point-32x32.jpg</url>
	<title>firefox | Woody Hayday | Blog</title>
	<link>https://blog.woodylabs.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Firefox, why you mutate my css?</title>
		<link>https://blog.woodylabs.com/2011/06/firefox-why-you-mutate-my-css/</link>
		
		<dc:creator><![CDATA[Woody]]></dc:creator>
		<pubDate>Thu, 30 Jun 2011 06:07:40 +0000</pubDate>
				<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[JQuery]]></category>
		<guid isPermaLink="false">http://blog.woodylabs.com/?p=851</guid>

					<description><![CDATA[<p>Quick post to remove the annoyance that is this bug from my short term memory, you would think this would work: &#8230;it does, but not in firefox. Say the background property was set to &#8220;url(someimage.png) top left no-repeat&#8221;, making the background-image property &#8220;url(someimage.png)&#8221; right? In every browser except firefox, yes, not for firefox. Firefox would [&#8230;]</p>
<p>The post <a href="https://blog.woodylabs.com/2011/06/firefox-why-you-mutate-my-css/">Firefox, why you mutate my css?</a> first appeared on <a href="https://blog.woodylabs.com">Woody Hayday | Blog</a>.</p><hr /><a href="https://blog.woodylabs.com">Visit Woody Haydays Blog</a><hr />]]></description>
										<content:encoded><![CDATA[<p>Quick post to remove the annoyance that is this bug from my short term memory, you would think this would work:</p>
<pre class="brush: jscript; title: ; notranslate">var newBGString = $(this).css('background-image');</pre>
<p>&#8230;it does, but not in firefox. Say the background property was set to &#8220;url(someimage.png) top left no-repeat&#8221;, making the background-image property &#8220;url(someimage.png)&#8221; right? In every browser except firefox, yes, not for firefox. Firefox would set the var as &#8220;url(&#8220;someimage.png&#8221;)&#8221; and THEN complain that the var is not realistic when you go on to use it elsewhere. </p>
<p>Anyway ridiculous bug, almost as annoying is how simple, hacky and rough the fix is:</p>
<pre class="brush: jscript; title: ; notranslate">var newBGString = $(this).css('background-image').replace('&quot;',''); </pre>
<p>So if your firefox doesn&#8217;t like background image swapping via js, try it, I guess&#8230;</p><p>The post <a href="https://blog.woodylabs.com/2011/06/firefox-why-you-mutate-my-css/">Firefox, why you mutate my css?</a> first appeared on <a href="https://blog.woodylabs.com">Woody Hayday | Blog</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
