<?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>Beyond Coding &#187; Browsers</title>
	<atom:link href="http://www.beyondcoding.com/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beyondcoding.com</link>
	<description>Follow us on Twitter: @fredwu and @scotti3g</description>
	<lastBuildDate>Sun, 08 Aug 2010 23:27:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PageRank not Working &#8211; Here&#8217;s a Fix</title>
		<link>http://www.beyondcoding.com/2009/10/13/pagerank-not-working-heres-a-fix/</link>
		<comments>http://www.beyondcoding.com/2009/10/13/pagerank-not-working-heres-a-fix/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 13:21:15 +0000</pubDate>
		<dc:creator>scotti3g</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google Sidewiki]]></category>
		<category><![CDATA[Google Toolbar]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=348</guid>
		<description><![CDATA[I reinstalled my Google Toolbar in Firefox recently to check out some of the newer features that might impact SEO and brand reputation (such as Google Sidewiki). Unfortunately doing so caused the PageRank feature of the toolbar to stop working. Reinstalling and restarting didn&#8217;t help but here&#8217;s what did (courtesy of this post): Enter &#8220;about:config&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I reinstalled my Google Toolbar in Firefox recently to check out some of the newer features that might impact SEO and brand reputation (such as <a href="http://www.google.com/sidewiki/intl/en/index.html">Google Sidewiki</a>). Unfortunately doing so caused the PageRank feature of the toolbar to stop working. Reinstalling and restarting didn&#8217;t help but here&#8217;s what did (courtesy of <a href="http://www.google.com/support/forum/p/Toolbar/thread?tid=561e100c4a0df7ce&amp;hl=en">this post</a>):</p>
<ol>
<li>Enter &#8220;about:config&#8221; into Firefox&#8217;s Address Bar.</li>
<li>Right-click on any item in the list of preference names, select &#8220;New,&#8221; then click &#8220;Boolean.&#8221;</li>
<li>Enter &#8220;google.toolbar.firstrun.done&#8221; as the new preference name, then click &#8220;OK.&#8221;</li>
<li>Select &#8220;True,&#8221; then click &#8220;OK.&#8221;</li>
</ol>
<p>Now my only problem is finding pages which actually have something written about them in Sidewiki. So far the only page I&#8217;ve seen with comments was the Sidewiki page itself&#8230; :)</p>

	Tags: <a href="http://www.beyondcoding.com/tag/google-sidewiki/" title="Google Sidewiki" rel="tag">Google Sidewiki</a>, <a href="http://www.beyondcoding.com/tag/google-toolbar/" title="Google Toolbar" rel="tag">Google Toolbar</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/10/13/pagerank-not-working-heres-a-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery.slideDown() issues in IE: quick fixes</title>
		<link>http://www.beyondcoding.com/2009/02/26/jquery-slidedown-issues-in-ie-quick-fixes/</link>
		<comments>http://www.beyondcoding.com/2009/02/26/jquery-slidedown-issues-in-ie-quick-fixes/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 02:41:34 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[slideDown]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=249</guid>
		<description><![CDATA[A simple Google search suggests that people are having problems with jQuery.slideDown() on Internet Explorer. I&#8217;ve come across two issues on Internet Explorer 7 while developing a website containing some slideDown() effects, and found some quick fixes for them. :) Issue 1: slideDown() does not actually slide, the target HTML element appears the same way [...]]]></description>
			<content:encoded><![CDATA[<p>A simple Google search suggests that people are <a href="http://nick.blogster.com/jquery-slidedown-effect-ie-bug">having problems</a> with jQuery.slideDown() on Internet Explorer.</p>
<p>I&#8217;ve come across two issues on Internet Explorer 7 while developing a website containing some <em>slideDown()</em> effects, and found some quick fixes for them. :)</p>
<p><span id="more-249"></span></p>
<p><strong>Issue 1: <em>slideDown()</em> does not actually slide, the target HTML element appears the same way as <em>show()</em>.</strong></p>
<p>After messing around with the JavaScript and HTML, I&#8217;ve finally nailed down the issue. It occurs when there are absolutely positioned elements in the target HTML.</p>
<p>Typically when we have absolutely positioned elements, we would want to have a relatively positioned wrapper element to control the position of the elements on the page. It makes perfect sense to simply trigger the <em>slideDown()</em> effect on the wrapper.</p>
<p>The HTML schema would look something like this:</p>
<p>Wrapper A <small>(the element that contains Wrapper B, it makes an AJAX call to retrieve Wrapper B)</small><br />
&#8230;. Wrapper B <small>(the relatively positioned target element that is assigned to the <em>slideDown()</em> event)</small><br />
&#8230;. &#8230;. Element C <small>(absolutely positioned)</small></p>
<p>Both Firefox and Safari don&#8217;t have any problems with that, but Internet Explorer does. On IE 7 (I haven&#8217;t tested IE 6), the targeted HTML (Wrapper B) will simply appear without the sliding effect, resulting the same effect as calling <em>show()</em>.</p>
<p>The fix is simple, make the parent element (Wrapper A) relatively positioned too.</p>
<p><strong>Issue 2: <em>slideDown()</em> animates, then the element vanishes immediately afterwards.</strong></p>
<p>The problematic JavaScript looks something like this:</p>
<pre class="brush: jscript;">
var data = 'Some HTML retrieved from an AJAX call.';
$(&quot;div#wrapper_b&quot;).hide().html(data).slideDown();
</pre>
<p>The fix is quick and simple:</p>
<pre class="brush: jscript;">
var data = 'Some HTML retrieved from an AJAX call.';
$(&quot;div#wrapper_b&quot;).hide().html(data).slideDown().show(function(){
	$(this).html(data).show();
});
</pre>
<p>Of course, depending on the HTML markup, your mileage may vary.</p>

	Tags: <a href="http://www.beyondcoding.com/tag/fix/" title="fix" rel="tag">fix</a>, <a href="http://www.beyondcoding.com/tag/ie/" title="IE" rel="tag">IE</a>, <a href="http://www.beyondcoding.com/tag/internet-explorer/" title="Internet Explorer" rel="tag">Internet Explorer</a>, <a href="http://www.beyondcoding.com/tag/jquery/" title="jQuery" rel="tag">jQuery</a>, <a href="http://www.beyondcoding.com/tag/slidedown/" title="slideDown" rel="tag">slideDown</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2008/11/20/jquery-problems-in-ie-it-could-be-swfobjects/" title="jQuery problems in IE? It could be SWFObjects. (November 20, 2008)">jQuery problems in IE? It could be SWFObjects.</a> (3)</li>
	<li><a href="http://www.beyondcoding.com/2009/08/04/release-jquery-plugin-slideshow-lite/" title="Release: [jQuery Plugin] Slideshow Lite (August 4, 2009)">Release: [jQuery Plugin] Slideshow Lite</a> (50)</li>
	<li><a href="http://www.beyondcoding.com/2009/01/15/release-jquery-plugin-endless-scroll/" title="Release: [jQuery Plugin] Endless Scroll (January 15, 2009)">Release: [jQuery Plugin] Endless Scroll</a> (36)</li>
	<li><a href="http://www.beyondcoding.com/2010/08/09/rails-jquery-dating-etc/" title="Rails, jQuery, Dating, etc (August 9, 2010)">Rails, jQuery, Dating, etc</a> (0)</li>
	<li><a href="http://www.beyondcoding.com/2009/08/29/jquery-slideshow-lite-plugin-updated-major-rewrite/" title="jQuery Slideshow Lite Plugin Updated (Major Rewrite) (August 29, 2009)">jQuery Slideshow Lite Plugin Updated (Major Rewrite)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/02/26/jquery-slidedown-issues-in-ie-quick-fixes/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Must-have for multiple Gmail attachments &#8211; dragdropupload</title>
		<link>http://www.beyondcoding.com/2009/02/03/must-have-for-multiple-gmail-attachments-dragdropupload/</link>
		<comments>http://www.beyondcoding.com/2009/02/03/must-have-for-multiple-gmail-attachments-dragdropupload/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:14:41 +0000</pubDate>
		<dc:creator>scotti3g</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[uploading]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=159</guid>
		<description><![CDATA[A lot of you probably already know about this, but if you ever want to do multiple file uploads in Firefox then this Firefox Add On / Extension is for you: dragdropupload This Add-On lets you drag a bunch of files from your computer and drop them on a standard file input upload box. If [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of you probably already know about this, but if you ever want to do multiple file uploads in Firefox then this Firefox Add On / Extension is for you:</p>
<p><a href=" https://addons.mozilla.org/en-US/firefox/addon/2190">dragdropupload</a></p>
<p>This Add-On lets you drag a bunch of files from your computer and drop them on a standard file input upload box. If the web site has been built a particular way to allow for multiple upload boxes generated dynamically (such as Gmail), dragging a bunch of files onto the single upload box will automatically generate a whole heap of individual upload boxes. Very neat! :)</p>
<p>This is mega handy when you want to send a whole bunch of pictures to someone via Gmail.</p>

	Tags: <a href="http://www.beyondcoding.com/tag/firefox/" title="Firefox" rel="tag">Firefox</a>, <a href="http://www.beyondcoding.com/tag/forms/" title="forms" rel="tag">forms</a>, <a href="http://www.beyondcoding.com/tag/gmail/" title="gmail" rel="tag">gmail</a>, <a href="http://www.beyondcoding.com/tag/uploading/" title="uploading" rel="tag">uploading</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2008/12/16/option-selectedselected-not-working/" title="Option selected=&#8221;selected&#8221; not working? (December 16, 2008)">Option selected=&#8221;selected&#8221; not working?</a> (8)</li>
	<li><a href="http://www.beyondcoding.com/2008/03/13/macbook-pro-arrived-iphone-on-its-way/" title="Macbook Pro arrived, iPhone on its way :) (March 13, 2008)">Macbook Pro arrived, iPhone on its way :)</a> (4)</li>
	<li><a href="http://www.beyondcoding.com/2008/04/12/firefox-on-os-x-and-linux-spell-check-and-mouse-gestures/" title="Firefox on OS X and Linux: Spell Check and Mouse Gestures (April 12, 2008)">Firefox on OS X and Linux: Spell Check and Mouse Gestures</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/02/03/must-have-for-multiple-gmail-attachments-dragdropupload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
