<?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>Rey Bango &#187; Browsers</title>
	<atom:link href="http://blog.reybango.com/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.reybango.com</link>
	<description>JavaScript, HTML, CSS &#38; Random Stuff...</description>
	<lastBuildDate>Mon, 09 Jan 2012 20:46:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fix Common IE Problems: Update your Docmode for Web Standards</title>
		<link>http://blog.reybango.com/2012/01/09/fix-common-ie-problems-update-your-docmode-for-web-standards/</link>
		<comments>http://blog.reybango.com/2012/01/09/fix-common-ie-problems-update-your-docmode-for-web-standards/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 20:39:18 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=1800</guid>
		<description><![CDATA[Document compatibility defines how a browser renders your website. The more specific you are at telling the browser what to expect, the better the experience for your users. When using web standards like HTML5, start by explicitly declaring the HTML5 document type: This markup triggers standards mode in Internet Explorer 9 and 10. And it [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Document compatibility defines how a browser renders your website.  The more specific you are at telling the browser what to expect, the better the experience for your users. When using web standards like HTML5, start by <a href="http://msdn.microsoft.com/en-us/library/cc288325(v=VS.85).aspx">explicitly declaring</a> the HTML5 document type:</p>
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE html&gt;</pre>
<p>This markup triggers <a href="http://msdn.microsoft.com/en-us/library/cc288325(v=VS.85).aspx">standards mode</a> in Internet Explorer 9 and 10.  And it also works well in Chrome and Firefox.  Four steps will get your site ready for many browsers and devices:</p>
<h2>Step 1: Validate that your site uses standards mode</h2>
<p>Check whether or not your site is currently in standards mode:</p>
<ol>
<li>Open the website in <a href="http://ie.microsoft.com/testdrive/Info/Downloads/Default.html">IE10 platform preview</a>.
<ul>
<li><strong>Note:</strong> You can also follow the same steps to update the docmode for IE9 only without downloading the preview.</li>
</ul>
</li>
<li>Press F12 to launch the IE Developer Tools or find it on the <em>Tools</em> menu as shown below:<br />
<a href="http://blog.reybango.com/wp-content/uploads/2012/01/dev-tool-menu-1.png"><img src="http://blog.reybango.com/wp-content/uploads/2012/01/dev-tool-menu-1.png" alt="" title="dev-tool-menu-1" width="243" height="268" class="alignleft size-full wp-image-1806" /></a></p>
<ul>
<li><strong>Note:</strong> If you’re not familiar with using the IE F12 Developer Tools to debug your webpages, please read the <a href="http://msdn.microsoft.com/en-us/library/gg589507%28v=VS.85%29.aspx">following tutorial</a>.</li>
</ul>
</li>
<li>Check if your site indicates <em>Browser Mode: IE10</em> and <em>Document Mode: IE10 standards</em> as shown in the toolbar below:<br />
<a href="http://blog.reybango.com/wp-content/uploads/2012/01/ie-dev-tools-1.png"><img src="http://blog.reybango.com/wp-content/uploads/2012/01/ie-dev-tools-1-300x39.png" alt="" title="ie-dev-tools-1" width="300" height="39" class="alignleft size-medium wp-image-1808" /></a><br />
<em>Click to Enlarge</em></li>
<li>If your site is in <em>Browser Mode: IE10</em> and <em>Document Mode: IE10 Standards</em>, <strong>you’re done!</strong>  Note if the Browser Mode and Document Mode of your site are different than above.  A common example is <em>Browser Mode = IE8</em> and <em>Document Mode = Quirks</em> which indicates that your website was designed for older versions of IE and may not be ready for web standards.<br />
<a href="http://blog.reybango.com/wp-content/uploads/2012/01/ie-dev-tools-2.png"><img src="http://blog.reybango.com/wp-content/uploads/2012/01/ie-dev-tools-2-300x42.png" alt="" title="ie-dev-tools-2" width="300" height="42" class="alignleft size-medium wp-image-1809" /></a><br />
<em>Click to Enlarge</em></li>
</ol>
<h2>Step 2: Implement docmode for web standards</h2>
<p>Force IE10 standards mode to test your website:</p>
<ol>
<li>Insert
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE html&gt;</pre>
<p> into your website’s HTML page</p>
<ul>
<li>Learn more about how to update your doctypes <a href="http://msdn.microsoft.com/en-us/library/cc288325(v=VS.85).aspx">here</a></li>
</ul>
</li>
<li>Reload your page in the browser and check the <em>Browser Mode</em> and <em>Document Mode</em> again using the F12 Developer Tools.  If <em>Browser Mode: IE10</em> and <em>Document Mode: IE10 standards</em> are not shown, continue below.</li>
</ol>
<h2>Step 3: Determine why your site is not in Standards Mode</h2>
<p>Most problems are related to supporting older versions of IE.  Start by ensuring your standards-based code is rendered in IE9 and 10.  Then keep your non-standards-based code for older versions of IE.</p>
<ol>
<li>My page is not in Browser Mode: IE10</p>
<ul>
<li><strong>Possible Cause:</strong> Your website may flagged in <a href="http://msdn.microsoft.com/en-us/library/dd567845(v=VS.85).aspx">Compatibility View</a> and forced into an older browser mode to ensure the site functions
<ul>
<li><strong>Resolution:</strong> Check if your site is on the list <a href="http://ie9cvlist.ie.microsoft.com/ie9CompatViewList.xml">here</a>.  Learn more about the Compatibility View list and request removal <a href="http://msdn.microsoft.com/en-us/library/dd567845(v=VS.85).aspx#removal">here</a>.</li>
</ul>
</li>
</ul>
</li>
<li>My page is not in Document Mode = IE10
<ul>
<li><strong>Possible Cause:</strong> Your website’s doctype is invalid or missing</p>
<ul>
<li><strong>Resolution:</strong> Check for a <a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">valid, well-formed doctype</a> like:</p>
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE html&gt;
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;</pre>
<p>Learn more about how to update your doctypes <a href="http://msdn.microsoft.com/en-us/library/cc288325(v=VS.85).aspx">here</a>.</li>
</ul>
</li>
<ul>
<li><strong>Possible Cause:</strong> Docmode being forced via <a href="http://msdn.microsoft.com/en-us/library/cc288325(v=vs.85).aspx">X-UA-Compatible meta tag</a></p>
<ul>
<li><strong>Resolution:</strong> Check for code similar to this in the <head> of the page.</p>
<pre class="brush: xml; title: ; notranslate">&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=EmulateIE7&quot; &gt;
&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=8&quot; &gt;</pre>
<p>Remove it and reload your page.  Continue testing.  Learn more about Specifying Document Compatibility Modes <a href="http://msdn.microsoft.com/en-us/library/cc288325(v=VS.85).aspx#SetMode">here</a>.</li>
</ul>
</li>
</li>
</ol>
<h2>Step 4: Resolve common IE problems when updating docmode</h2>
<p>Most problems are related to supporting older versions of IE.  Start by ensuring your standards-based code is rendered in IE9 and 10.  Then keep your non-standards-based code for older versions of IE.</p>
<ul>
<li><strong>Possible Cause:</strong> <a href="http://msdn.microsoft.com/en-us/library/ms537512%28v=vs.85%29.aspx">Conditional comments</a> support browser version-specific features </p>
<ul>
<li><strong>Resolution:</strong> Check for <a href="http://msdn.microsoft.com/en-us/library/ms537512%28v=vs.85%29.aspx">conditional comments</a> that run non-standard code.  These are often used on specific features supported by older versions of IE to allow the page to degrade gracefully.  Check for code similar to this:</p>
<pre class="brush: xml; title: ; notranslate">&lt;!--[if IE 8]&gt;

&lt;p&gt;Welcome to Internet Explorer 8.&lt;/p&gt;

&lt;![endif]--&gt;
</pre>
<p>Remove it and reload your page.  Continue testing. Learn more about Conditional Comments <a href="http://msdn.microsoft.com/en-us/library/ms537512%28v=vs.85%29.aspx">here</a>.</li>
</ul>
</li>
<li><strong>Possible Cause:</strong> <a href="http://blogs.msdn.com/b/ieinternals/archive/2011/06/30/perils-of-user-agent-sniffing-browser-mode-document-mode-compatibility-view.aspx">User agent sniffing</a> supports browser version-specific features
<ul>
<li><strong>Resolution:</strong> Check for <a href="http://blogs.msdn.com/b/ieinternals/archive/2011/06/30/perils-of-user-agent-sniffing-browser-mode-document-mode-compatibility-view.aspx">user agent sniffing</a>. These are often used to specifically target a browser based on the user agent string presented via the browser mode.  Check for code similar to this:</p>
<pre class="brush: jscript; title: ; notranslate">if (version = /MSIE (\d+\.\d+)/.exec(navigator.userAgent)) {

	isIE = true;

browserVersion = parseFloat(version[1]);
}</pre>
<p>Start by implementing <a href="http://blogs.msdn.com/b/ie/archive/2010/04/14/same-markup-writing-cross-browser-code.aspx">feature detection</a> where possible with web standards.  Learn more about User-Agent Strings <a href="http://msdn.microsoft.com/en-us/library/ms537503(v=VS.85).aspx">here</a>. The IE10 User-Agent String is located <a href="http://blogs.msdn.com/b/ie/archive/2011/04/15/the-ie10-user-agent-string.aspx">here</a>.</li>
</ul>
</li>
</ul>
<h2>Other reasons my page does not render correctly:</h2>
<ul>
<li><strong>Possible Cause:</strong> Your website may be using browser specific features that are no longer supported.  Use web standards whenever possible.</p>
<ul>
<li><strong>Resolution:</strong> Run the <a href="http://ie.microsoft.com/testdrive/HTML5/CompatInspector/Default.html">Compatibility Inspector tool</a>.</li>
</ul>
</li>
<li><strong>Possible Cause:</strong> Your website may be using 3rd party plug-ins or like Flash, Quicktime, and Silverlight that are no longer supported by the IE10 metro. Use web standards whenever possible.
<ul>
<li><strong>Resolution:</strong> Learn how to create plug-in free experiences.  A complete step-by-step guide will be available shortly.</li>
</ul>
</li>
<li><strong>Possible Cause:</strong> Your website may be loading browser version-specific CSS files:
<ul>
<li><strong>Resolution:</strong> Ensure layout is avoiding CSS hacks where possible.  Learn more about investigating CSS issues <a href="http://msdn.microsoft.com/en-us/library/gg699340(v=VS.85).aspx">here</a>.</li>
</ul>
</li>
</ul>
<p>A list of common problems is available in the <a href="http://msdn.microsoft.com/en-us/library/ff986083(v=VS.85).aspx">IE Compatibility Cookbook</a>. </p>
<p>If you’re unable to update your docmode with these resolution steps, tweet us <a href="http://twitter.com/#!/IE">@IE</a> or check the <a href="http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/threads">Forums on MSDN</a>.</p>
<p>For further detail, try these articles:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/cc288325(v=VS.85).aspx">Defining Document Capability</a> @ MSDN</li>
<li><a href="http://msdn.microsoft.com/en-us/library/gg699340(v=VS.85).aspx">Investigating Document Mode Issues</a> @ MSDN</li>
<li><a href="http://blogs.msdn.com/b/ie/archive/2011/12/14/interoperable-html5-quirks-mode-in-ie10.aspx">Interoperable Quirks Mode in IE10</a> @ IE Blog</li>
<li><a href="http://ie.microsoft.com/testdrive/HTML5/CompatInspector/">Compatibility Inspector tool</a> @ IETestDrive.com</li>
<li><a href="http://www.w3.org/QA/Tips/Doctype">Don’t Forget to Add a Doctype</a> @ W3C.org</li>
</ul>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2012/01/09/fix-common-ie-problems-update-your-docmode-for-web-standards/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Site Pinning: Rotating Overlay Icons for Multiple Service Notifications</title>
		<link>http://blog.reybango.com/2011/10/18/site-pinning-rotating-overlay-icons-for-multiple-service-notifications/</link>
		<comments>http://blog.reybango.com/2011/10/18/site-pinning-rotating-overlay-icons-for-multiple-service-notifications/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 13:00:11 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=1759</guid>
		<description><![CDATA[In my last post, I went over how to use IE9′s Site Pinning API to implement overlay icons to enhance user notifications. The demo focused on how to display a numeric icon to indicate when a specific event (e.g.: messages in an inbox) had occurred. Pinned site with overlay icon It&#8217;s a really great way [...]
Related posts:<ol>
<li><a href='http://blog.reybango.com/2011/10/10/using-site-pinning-and-overlay-icons-for-enhanced-user-notifications-and-engagement/' rel='bookmark' title='Using Site Pinning and Overlay Icons for Enhanced User Notifications and Engagement'>Using Site Pinning and Overlay Icons for Enhanced User Notifications and Engagement</a> <small>I was recently doing some testing of IE9&#8242;s Site Pinning...</small></li>
</ol>

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://blog.reybango.com/2011/10/10/using-site-pinning-and-overlay-icons-for-enhanced-user-notifications-and-engagement/">last post</a>, I went over how to use <a href="http://msdn.microsoft.com/en-us/library/gg491731(v=VS.85).aspx">IE9′s Site Pinning API</a> to implement overlay icons to enhance user notifications. The demo focused on how to display a numeric icon to indicate when a specific event (e.g.: messages in an inbox) had occurred. </p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2011/10/overlay-icon.png"><img src="http://blog.reybango.com/wp-content/uploads/2011/10/overlay-icon.png" alt="" title="overlay-icon" width="508" height="150" class="alignleft size-full wp-image-1710" /></a><br />
<em>Pinned site with overlay icon</em></p>
<p>It&#8217;s a really great way of letting your users know that there&#8217;s pending information for them to check into. But what happens if your site offers multiple types of notifications? With websites offering so much functionality nowadays, it&#8217;s pretty common for them to also serve up multiple types of notifications, from friend requests and event reminders to new messages and game invites.</p>
<h2>Rotating Multiple Overlays Icons</h2>
<p>The great thing about the Site Pinning API is that it&#8217;s very flexible and through some JavaScript magic, you can easily display multiple overlay icons for the various services you have. In this demo, I want to rotate through 3 different overlay icons that alert the user to pending messages, requests and actions.</p>
<p>As before, I had to flex some of my artistic talent by creating the overlay icons using <a href="http://buildmypinnedsite.com/#step_1">the x-icon editor</a>. I created 5 of each and here&#8217;s how the first three look:</p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2011/10/messages-1.png"><img src="http://blog.reybango.com/wp-content/uploads/2011/10/messages-1.png" alt="" title="messages-1" width="32" height="32" class="alignleft size-full wp-image-1762" /></a><a href="http://blog.reybango.com/wp-content/uploads/2011/10/requests-1.png"><img src="http://blog.reybango.com/wp-content/uploads/2011/10/requests-1.png" alt="" title="requests-1" width="32" height="32" class="alignleft size-full wp-image-1763" /></a><a href="http://blog.reybango.com/wp-content/uploads/2011/10/actions-1.png"><img src="http://blog.reybango.com/wp-content/uploads/2011/10/actions-1.png" alt="" title="actions-1" width="32" height="32" class="alignleft size-full wp-image-1764" /></a></p>
<p>The code changed slightly from the last demo in order to accommodate multiple bits of data per fetch. While previously, I was only fetching one piece of data, in this demo, I&#8217;m returning 3, one for each notification type:</p>
<pre class="brush: jscript; title: ; notranslate"> myPin.init([{ &quot;data&quot; : [{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 2 }, { &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 1 }, { &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 3 }] },
		        { &quot;data&quot; : [{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 1 }, { &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 5 }, { &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 2 }] },
		        { &quot;data&quot; : [{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 5 }, { &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 1 }, { &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 4 }] }
			   ]);</pre>
<p>As a reminder, the method <em>getData()</em> <strong>simulates</strong> grabbing remote data. So if we look at the data above, we can simulate pulling back three distinct bits of data. This is why we call the method every 10 seconds using setInterval. This allows us to see how notifications might look over a period of time. </p>
<pre class="brush: jscript; title: ; notranslate">setInterval(function () { myPin.getData() }, 10000);</pre>
<p>The next thing that changed is the use of a timer to allow a slight delay while rendering the overlay icons. Using <em>setTimeout()</em> provides enough of delay so that an individual overlay icon is visible to the user before rotating on to the next icon. If we didn&#8217;t have this delay, the rotation would be way too fast to provide any useful notification. If we look at the following image, we can see what the notification will look like:</p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2011/10/overlay.png"><img src="http://blog.reybango.com/wp-content/uploads/2011/10/overlay.png" alt="" title="overlay" width="332" height="150" class="alignleft size-full wp-image-1773" /></a><br />
<em>Overlay icon showing numeric notification</em></p>
<p>This is accomplished via the following code:</p>
<pre class="brush: jscript; title: ; notranslate">// Grab the current set of data...
currData = this.dataBin[this.currIndex++].data;		

/* We're going to display a new overlay every x number of seconds to display a new overlay icon so
   let's loop through the data elements for the current set of data... */
for (var i=0; i &lt; currData.length; i++ ){

	(function(idx) { setTimeout( function(){ myPin.dispOverlay( currData[idx] ); }, 1000 * idx); }( i ));					

}</pre>
<p>Here&#8217;s what&#8217;s happening. In the first line, I grab the current set of data that holds all of the notification information (messages, requests &#038; actions). That data looks like this:</p>
<pre class="brush: jscript; title: ; notranslate">[{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 2 },
{ &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 1 },
{ &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 3 }]</pre>
<p>I loop through each group of data and assign a timer using <em>setTimeout()</em> that will call <em>dispOverlay()</em> at ~1 second intervals. That&#8217;s the magic code that allows for the gradual icon rendering delay I mentioned before. The expected functionality is that the &#8220;messages&#8221; icon will render followed by the &#8220;requests&#8221; icon 1 second later, and then finally the &#8220;actions&#8221; icon.</p>
<p>Now, you might be wondering why I have an anonymous function wrapping the <em>setTimeout()</em>. It&#8217;s because I have a closure within setTimeout which can <a href="http://james.padolsey.com/javascript/closures-in-javascript/">cause a common scoping issue</a> in which the variable &#8216;i&#8217;, which I use to grab the current index of data, will only be updated to the last index value. James Padolsey has a <a href="http://james.padolsey.com/javascript/closures-in-javascript/">great explanation on it</a> and thanks to <a href="https://twitter.com/jdalton">John David Dalton</a> for helping me troubleshoot this.</p>
<p>The final change is in <em>dispOverlay()</em> in which I need to determine which overlay icon needs to display. Since I now have three different types of notifications, I need a conditional statement to determine the type and build the correct icon name:</p>
<pre class="brush: jscript; title: ; notranslate">if (theData.ntype == &quot;M&quot;) {
	oImg = &quot;images/messages-&quot; + theData.num + &quot;.ico&quot;;
} else if (theData.ntype == &quot;R&quot;) {
	oImg = &quot;images/requests-&quot; + theData.num + &quot;.ico&quot;;
} else if (theData.ntype == &quot;A&quot;) {
	oImg = &quot;images/actions-&quot; + theData.num + &quot;.ico&quot;;
}</pre>
<p>This checks the type and serves up the right icon based on the type and the number of notifications pending for that type.</p>
<h2>The Demo and Final Code</h2>
<p>You can check out the demo by going here in IE9:</p>
<p><a href="http://reybango.com/demos/sprotate/index.html">http://reybango.com/demos/sprotate/index.html</a></p>
<p>When the page renders, drag the tab down to your taskbar and pin it. You should see a new window appear with your newly pinned site. Next, you’ll see the overlay icons appear in the taskbar and they should begin to cycle every 10 seconds.</p>
<p>Here’s the full source code. You can also <a href="reybango.com/demos/sprotate/src/sprotate.zip">download everything here</a>. </p>
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Pinned Site - Rotating Overlay Icons&lt;/title&gt;
&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/ico&quot; href=&quot;favicon.ico&quot; /&gt;
&lt;meta name=&quot;application-name&quot; content=&quot;Pinned Site Test&quot; /&gt;
&lt;meta name=&quot;msapplication-starturl&quot; content=&quot;http://reybango.com/demos/sprotate/index.html&quot; /&gt;
&lt;meta name=&quot;msapplication-navbutton-color&quot; content=&quot;#3480C0&quot; /&gt;
&lt;meta name=&quot;msapplication-window&quot; content=&quot;width=1024;height=768&quot; /&gt;
&lt;meta name=&quot;msapplication-tooltip&quot; content=&quot;Testing the Pinned Site API&quot; /&gt;
&lt;style&gt;
body {
    background: none repeat scroll 0 0 #4492CE;
    font: 440%/1.4em 'Segoe Light',Segoe,'Segoe UI','Meiryo Regular','Meiryo',sans-serif;
    color: #EDEFF4;
}

&lt;/style&gt;

&lt;/head&gt;

&lt;body&gt;

&lt;div&gt;
&lt;h1&gt;Pinned Sites&lt;/h1&gt;
&lt;p&gt;Rotating Overlay Icons&lt;/p&gt;
&lt;/div&gt;

&lt;script&gt;

	var myData = [];

    var myPin = {

        currIndex: 0,
        dataBin: [],

        getData: function () {

			var idx = 0, currData = [], cntr = 0, theData;

            // Determines whether the current page was launched as a pinned site...
            if (window.external.msIsSiteMode()) {

				// Grab the current set of data...
				currData = this.dataBin[this.currIndex++].data;		

				/* We're going to display a new overlay every x number of seconds to display a new overlay icon so
				   let's loop through the data elements for the current set of data... */
				for (var i=0; i &lt; currData.length; i++ ){

					(function(idx) { setTimeout( function(){ myPin.dispOverlay( currData[idx] ); }, 1e3 * idx); }( i ));					

				}

				if (this.currIndex &gt; 2) { this.currIndex = 0 }

            }

        },

        dispOverlay: function (theData) {

            var oImg = &quot;&quot;;

            // Is there any data?
            if (theData) {

                // Clear any preexisting overlay icon
                window.external.msSiteModeClearIconOverlay();

				// Render the overlay icon based on the data returned...
				if (theData.ntype == &quot;M&quot;) {
					oImg = &quot;images/messages-&quot; + theData.num + &quot;.ico&quot;;
				} else if (theData.ntype == &quot;R&quot;) {
					oImg = &quot;images/requests-&quot; + theData.num + &quot;.ico&quot;;
				} else if (theData.ntype == &quot;A&quot;) {
					oImg = &quot;images/actions-&quot; + theData.num + &quot;.ico&quot;;
				}				

                // Go ahead and create the overlay image and it's label...
                this.setOverlay(oImg, theData.label);

            }

        },

        setOverlay: function (icon, desc) {

            // Sets the overlay icons...
            window.external.msSiteModeSetIconOverlay(icon, desc);
            window.external.msSiteModeActivate();

        },

        init: function (myData) {

            this.dataBin = myData;
			this.getData();

        }

    };

    // This clears out any previously set overlay icons...
    window.external.msSiteModeClearIconOverlay();

    // Run it once to kick everything off...
    myPin.init([{ &quot;data&quot; : [{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 2 }, { &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 1 }, { &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 3 }] },
		        { &quot;data&quot; : [{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 1 }, { &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 5 }, { &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 2 }] },
		        { &quot;data&quot; : [{ &quot;label&quot; : &quot;Messages&quot;, &quot;ntype&quot; : &quot;M&quot;, &quot;num&quot;: 5 }, { &quot;label&quot; : &quot;Requests&quot;, &quot;ntype&quot; : &quot;R&quot;, &quot;num&quot;: 1 }, { &quot;label&quot; : &quot;Actions&quot;, &quot;ntype&quot; : &quot;A&quot;, &quot;num&quot;: 4 }] }
			   ]);

    // This is only here because I want to simulate pulling data on a regular interval...
    setInterval(function () { myPin.getData() }, 10000);

&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Related posts:<ol>
<li><a href='http://blog.reybango.com/2011/10/10/using-site-pinning-and-overlay-icons-for-enhanced-user-notifications-and-engagement/' rel='bookmark' title='Using Site Pinning and Overlay Icons for Enhanced User Notifications and Engagement'>Using Site Pinning and Overlay Icons for Enhanced User Notifications and Engagement</a> <small>I was recently doing some testing of IE9&#8242;s Site Pinning...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2011/10/18/site-pinning-rotating-overlay-icons-for-multiple-service-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Site Pinning and Overlay Icons for Enhanced User Notifications and Engagement</title>
		<link>http://blog.reybango.com/2011/10/10/using-site-pinning-and-overlay-icons-for-enhanced-user-notifications-and-engagement/</link>
		<comments>http://blog.reybango.com/2011/10/10/using-site-pinning-and-overlay-icons-for-enhanced-user-notifications-and-engagement/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 13:00:06 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=1707</guid>
		<description><![CDATA[I was recently doing some testing of IE9&#8242;s Site Pinning API and found out about a cool bit of functionality that can enhance user notifications. If you&#8217;re not familiar with site pinning, it&#8217;s a great way to allow users to have easy and quick access to their favorite sites via the Windows taskbar. There&#8217;s a [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I was recently doing some testing of <a href="http://msdn.microsoft.com/en-us/library/gg491731(v=VS.85).aspx">IE9&#8242;s Site Pinning API</a> and found out about a cool bit of functionality that can enhance user notifications. If you&#8217;re not familiar with site pinning, it&#8217;s a great way to allow users to have easy and quick access to their favorite sites via the Windows taskbar. There&#8217;s a really nice <a href="http://www.beautyoftheweb.com/#/productguide/clean/seamless-with-windows-7/pinned-sites">overview on Beauty of the Web</a> that explains how it works.</p>
<h2>Keeping Users Up-to-Date</h2>
<p>One of the features the API provides is the notion of notifications that can allow developers to provide alerts to end users. The functionality allows you to dynamically insert custom overlay icons that can alert users when an important bit of information is available. These overlay icons are rendered over the favicon that is pinned to the taskbar. If you look at the image below, you can see it in action:</p>
<p><img src="http://blog.reybango.com/wp-content/uploads/2011/10/pinned.png" alt="" title="pinned" width="533" height="151" class="alignleft size-full wp-image-1712" /><br />
<em>Pinned site with no overlay icon</em></p>
<p><img src="http://blog.reybango.com/wp-content/uploads/2011/10/overlay-icon.png" alt="" title="overlay-icon" width="533" height="150" class="alignleft size-full wp-image-1710" /><br />
<em>Pinned site with overlay icon</em></p>
<p>So if you think about the possibilities, any site that offers users an inbox, special deals or sends out time-sensitive alerts could use this notification capability to keep their users up-to-date and more engaged on the site. Sites like the Huffington Post have already discovered that users that pinned HuffPost <a href="http://windowsteamblog.com/ie/b/ie/archive/2011/02/17/economics-of-the-web-ie9-users-that-pin-huffington-post-spend-49-more-time-on-site.aspx">spent 49% more time on the site</a>. </p>
<p>The best part is that adding this capability is insanely easy.</p>
<h2>Setting it Up</h2>
<p>For this post, we&#8217;re not going to go into the basics of how to pin a site. If you want to learn more, here&#8217;s a GREAT resource for getting you up to speed quickly: <a href="http://buildmypinnedsite.com/">BuildMyPinnedSite.com</a>. In fact, I used that site to help get me up-to-speed on the basics and it&#8217;s well-worth visiting.</p>
<p>To add notifications, you&#8217;ll need a couple of things:</p>
<ul>
<li>A cool favicon for your site. If you don&#8217;t have one, you can use the handy <a href="http://ie.microsoft.com/testdrive/Browser/IconEditor/Default.html">web-based X-Icon Editor</a> to create one.</li>
<li>A set of overlay icons to use. The recommended size is 16&#215;16.</li>
</ul>
<p>The API is JavaScript-based and we&#8217;ll use the following methods:</p>
<p><em><a href="http://msdn.microsoft.com/en-us/library/ff976301(v=VS.85).aspx">window.external.msSiteModeClearIconOverlay()</a><br />
<a href="http://msdn.microsoft.com/en-us/library/ff976304(v=VS.85).aspx">window.external.msSiteModeSetIconOverlay()</a><br />
<a href="http://msdn.microsoft.com/en-us/library/ff976297(v=VS.85).aspx">window.external.msSiteModeActivate()</a><br />
<a href="http://msdn.microsoft.com/en-us/library/ff976296(v=VS.85).aspx">window.external.msIsSiteMode()</a></em></p>
<p>The <em>window.external.msSiteModeClearIconOverlay</em> method is used to clear out any previously set overlay icons. <em>window.external.msSiteModeSetIconOverlay</em> allows you to specify the name of the notification icon as well as a accessible description. Lastly, we&#8217;ll use <em>window.external.msSiteModeActivate</em> to flash the pinned icon to notify the user of the update. Lastly, <em>window.external.msIsSiteMode</em> will let us know if the page was launched as a pinned site, thus allowing us to better determine when to run the code.</p>
<p>For the overlay icons, I&#8217;m using five images that display numbers 1 through 5 respectively to designate the number of messages are in a user&#8217;s inbox.</p>
<h2>The Code</h2>
<p>The first thing I need to add is the reference to my favicon. Note that if you don&#8217;t add one, then the Internet Explorer&#8217;s icon will be used by default.</p>
<pre class="brush: xml; title: ; notranslate">&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/ico&quot; href=&quot;favicon.ico&quot; /&gt;</pre>
<p>Next, I want to create some sample data to work with. What I want to do for my demo is to have the overlay icon dynamically change every 5 seconds to simulate a more real-world scenario. The data is a simple array containing JSON data in each element.  </p>
<pre class="brush: jscript; title: ; notranslate">myPin.init([{ &quot;num&quot;: 1, &quot;label&quot;: &quot;Label 1&quot; },
                { &quot;num&quot;: 2, &quot;label&quot;: &quot;Label 2&quot; },
                { &quot;num&quot;: 3, &quot;label&quot;: &quot;Label 3&quot; },
                { &quot;num&quot;: 4, &quot;label&quot;: &quot;Label 4&quot; },
                { &quot;num&quot;: 5, &quot;label&quot;: &quot;Label 5&quot; }
                ]);
</pre>
<p>By setting a timer, I&#8217;ll be able to pull a new set of data every 5 seconds. </p>
<pre class="brush: jscript; title: ; notranslate">setInterval(function () { myPin.getData(); }, 5000);</pre>
<p>The main thing to keep in mind is that I&#8217;m &#8220;simulating&#8221; getting data from some remote host. In reality, all that the <em>myPin.getData()</em> method does is use a running counter to grab a new set of data and render a new overlay icon:</p>
<pre class="brush: jscript; title: ; notranslate">getData: function () {
            // A function that just simulates returning a result set...
            var idx = 0;

            // Determines whether the current page was launched as a pinned site.
            if (window.external.msIsSiteMode()) {

                idx = this.currIndex++;
                this.currIndex = (this.currIndex &lt; 5) ? this.currIndex : 0;

                this.dispOverlay(this.dataBin[idx]);

            }

}</pre>
<p>As you can see, it uses the running counter var <em>currIndex</em> to determine which array element to grab and then passes the data to <em>dispOverlay()</em>. This is where we use <em>window.external.msSiteModeClearIconOverlay()</em> to clear out any previously displayed overlay icons and also generate a string for the actual icon name. You can see that the oImg var is created on the fly based on the data we&#8217;re using. </p>
<pre class="brush: jscript; title: ; notranslate">dispOverlay: function (theData) {

            var oImg = &quot;&quot;;

            // Is there any data?
            if (theData) {

                // Clear any preexisting overlay icon
                window.external.msSiteModeClearIconOverlay();

                // Create the image string...
                oImg = &quot;images/num_&quot; + theData.num + &quot;.ico&quot;;

                // Go ahead and create the overlay image and it's label...
                this.setOverlay(oImg, theData.label);

            }

}</pre>
<p>That icon name, along with the accessible label text for the icon, is passed to <em>setOverlay()</em> which sets the overlay icon via <em>window.external.msSiteModeSetIconOverlay</em> and flashes the taskbar icon using <em>window.external.msSiteModeActivate</em>.</p>
<pre class="brush: jscript; title: ; notranslate">setOverlay: function (icon, desc) {

            // Sets the overlay icons...
            window.external.msSiteModeSetIconOverlay(icon, desc);
            window.external.msSiteModeActivate();

}</pre>
<h2>Test it Out</h2>
<p>To test this out, it&#8217;s a simple matter of running your newly pinned page in Internet Explorer 9, grabbing the tab and dragging it down to your taskbar:</p>
<p><img src="http://blog.reybango.com/wp-content/uploads/2011/10/dragged-and-pinned.png" alt="" title="dragged-and-pinned" width="576" height="151" class="alignleft size-full wp-image-1731" /><br />
<em>Tab being dragged to the taskbar</em></p>
<p><img src="http://blog.reybango.com/wp-content/uploads/2011/10/pinned.png" alt="" title="pinned" width="533" height="151" class="alignleft size-full wp-image-1712" /><br />
<em>Pinned site with no overlay icon</em></p>
<p>Five seconds after the page has been pinned, the code will fire off the first notification and continue to cycle through the other icons every subsequent five seconds. </p>
<p><img src="http://blog.reybango.com/wp-content/uploads/2011/10/overlay-icon.png" alt="" title="overlay-icon" width="533" height="150" class="alignleft size-full wp-image-1710" /><br />
<em>Pinned site with overlay icon</em></p>
<p>An important thing to remember is that the <a href="http://msdn.microsoft.com/en-us/library/gg589512(v=VS.85).aspx">IE F12 Developer tools</a> are available to you to use in debugging your pinned site. So if you run into quirks, simply press the F12 key and the tools will appear.</p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2011/10/ietools.png"><img src="http://blog.reybango.com/wp-content/uploads/2011/10/ietools-300x225.png" alt="" title="ietools" width="300" height="225" class="alignleft size-medium wp-image-1736" /></a></p>
<h2>The Demo and Final Code</h2>
<p>You can check out the demo I whipped up by going here in IE9:</p>
<p><a href="http://reybango.com/demos/sitepinning/index.html">http://reybango.com/demos/sitepinning/index.html</a></p>
<p>When the page renders, drag the tab down to your taskbar and pin it. You should see a new windows appear with your newly pinned site. Five seconds later, you&#8217;ll see the first overlay icon appear in the taskbar.</p>
<p>Here&#8217;s the full source code. You can also <a href="http://reybango.com/demos/sitepinning/src/pinned-sites-overlay-icons.zip">download everything here</a>. The really great part is that it isn&#8217;t a lot of code to implement this. In fact, to use the API only required 4 method calls. The bulk of the code was to simulate pulling in data. And the <a href="<a href="http://windowsteamblog.com/ie/b/ie/archive/2011/02/17/economics-of-the-web-ie9-users-that-pin-huffington-post-spend-49-more-time-on-site.aspx">&#8220;>impact on user engagement</a> is certainly worth adding in the capability.</p>
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Pinned Site Test&lt;/title&gt;
&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/ico&quot; href=&quot;favicon.ico&quot; /&gt;
&lt;meta name=&quot;application-name&quot; content=&quot;Pinned Site Test&quot; /&gt;
&lt;meta name=&quot;msapplication-starturl&quot; content=&quot;http://reybango.com/demos/sitepinning/index.html&quot; /&gt;
&lt;meta name=&quot;msapplication-navbutton-color&quot; content=&quot;#3480C0&quot; /&gt;
&lt;meta name=&quot;msapplication-window&quot; content=&quot;width=1024;height=768&quot; /&gt;
&lt;meta name=&quot;msapplication-tooltip&quot; content=&quot;Testing the Pinned Site API&quot; /&gt;
&lt;style&gt;
body {
    background: none repeat scroll 0 0 #4492CE;
    color: #EDEFF4;
}

h1 {
    float: left;
    font: 440%/1.4em 'Segoe Light',Segoe,'Segoe UI','Meiryo Regular','Meiryo',sans-serif;
    margin-left: 10px;
    position: relative;
}
&lt;/style&gt;

&lt;/head&gt;

&lt;body&gt;

&lt;h1&gt;Pinned Site Test&lt;/h1&gt;

&lt;div&gt;&lt;/div&gt;

&lt;script&gt;

    var myPin = {

        currIndex: 0,
        dataBin: [],

        getData: function () {
            // A function that just simulates returning a result set...
            var idx = 0;

            // Determines whether the current page was launched as a pinned site.
            if (window.external.msIsSiteMode()) {

                idx = this.currIndex++;
                this.currIndex = (this.currIndex &lt; 5) ? this.currIndex : 0;

                this.dispOverlay(this.dataBin[idx]);

            }

        },

        setOverlay: function (icon, desc) {

            // Sets the overlay icons...
            window.external.msSiteModeSetIconOverlay(icon, desc);
            window.external.msSiteModeActivate();

        },

        dispOverlay: function (theData) {

            var oImg = &quot;&quot;;

            // Is there any data?
            if (theData) {

                // Clear any preexisting overlay icon
                window.external.msSiteModeClearIconOverlay();

                // Create the image string...
                oImg = &quot;images/num_&quot; + theData.num + &quot;.ico&quot;;

                // Go ahead and create the overlay image and it's label...
                this.setOverlay(oImg, theData.label);

            }

        },

        init: function (myData) {

            this.dataBin = myData;

        }

    };

    // This clears out any previously set overlay icons...
    window.external.msSiteModeClearIconOverlay();

    // Run it once to kick everything off...
    myPin.init([{ &quot;num&quot;: 1, &quot;label&quot;: &quot;Label 1&quot; },
                { &quot;num&quot;: 2, &quot;label&quot;: &quot;Label 2&quot; },
                { &quot;num&quot;: 3, &quot;label&quot;: &quot;Label 3&quot; },
                { &quot;num&quot;: 4, &quot;label&quot;: &quot;Label 4&quot; },
                { &quot;num&quot;: 5, &quot;label&quot;: &quot;Label 5&quot; }
                ]);

    // This is only here because I want to simulate pulling data on a regular interval...
    setInterval(function () { myPin.getData(); }, 5000);

&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2011/10/10/using-site-pinning-and-overlay-icons-for-enhanced-user-notifications-and-engagement/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Add Internet Explorer 9 Jump Lists to Your Site</title>
		<link>http://blog.reybango.com/2010/09/16/how-to-add-internet-explorer-9-jump-lists-to-your-site/</link>
		<comments>http://blog.reybango.com/2010/09/16/how-to-add-internet-explorer-9-jump-lists-to-your-site/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 16:26:53 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=1318</guid>
		<description><![CDATA[With Internet Explorer 9 Beta is out, I&#8217;m poking around with some of the new features available. One of the new features called website pinning allows you to &#8220;pin&#8221; a website to your Windows 7 taskbar for easy access later. The pinning feature, in itself, isn&#8217;t really all that interesting to me because you could [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>With Internet Explorer 9 Beta is out, I&#8217;m poking around with some of the new features available. One of the new features called website <a href="http://www.beautyoftheweb.com/#/startdeveloping/pinning">pinning</a> allows you to &#8220;pin&#8221; a website to your Windows 7 taskbar for easy access later. The pinning feature, in itself, isn&#8217;t really all that interesting to me because you could create desktop shortcuts to webpages for years. What is cool, though, is the ability specify direct links to important pages from a pinned website. These are called &#8220;<a href="http://www.beautyoftheweb.com/#/productguide/clean/seamless-with-windows-7/jump-lists">Jump Lists</a>&#8221; and they provide navigation capabilities straight from a pinned website. The obvious use case for this is to allow users to immediately reach the most important pages on a site without having to open the browser, type in the web address and click on several links to get to a page.</p>
<p>The code to make jump lists available is very straightforward. A new meta tag called &#8220;msapplication-task&#8221; is available in IE9 which allows you to define the navigation for your pinned website. For example, I added the following jump list to my blog:</p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2010/09/rey-pin.png"><img src="http://blog.reybango.com/wp-content/uploads/2010/09/rey-pin.png" alt="" title="rey-pin" width="263" height="274" class="alignleft size-full wp-image-1320" /></a></p>
<p>and here&#8217;s the code I added to my site to make that happen: </p>
<pre class="brush: xml; title: ; notranslate">
&lt;meta name=&quot;application-name&quot; content=&quot;Rey Bango Front-end Developer&quot;/&gt;
&lt;meta name=&quot;msapplication-tooltip&quot; content=&quot;Launch Rey Bango's Blog&quot;/&gt;
&lt;meta name=&quot;msapplication-task&quot; content=&quot;name=About;action-uri=/about/;icon-uri=/images/about.ico&quot; /&gt;
&lt;meta name=&quot;msapplication-task&quot; content=&quot;name=The Big List;action-uri=/the-big-list-of-javascript-css-and-html-development-tools-libraries-projects-and-books/;icon-uri=/images/list_links.ico&quot; /&gt;
&lt;meta name=&quot;msapplication-task&quot; content=&quot;name=jQuery Posts;action-uri=/category/jquery/;icon-uri=/images/jquery.ico&quot; /&gt;
&lt;meta name=&quot;msapplication-task&quot; content=&quot;name=Start Developing;action-uri=/category/javascript/;icon-uri=/images/script.ico&quot; /&gt;
&lt;link rel=&quot;shortcut icon&quot; href=&quot;/images/favicon.ico&quot; /&gt;
</pre>
<p>The <em>content</em> attribute allows you to specify the name, action and icon that you&#8217;d like to use for your jump list nav entry. Here&#8217;s a list of the available meta elements that you can use to format your jump lists:</p>
<style>
table, td { 
border: 1px solid #000; 
border-collapse:collapse;
line-height:140%;
margin:1px;
padding:4px
}
</style>
<table>
<tbody>
<tr>
<td>Name</td>
<td>Content</td>
</tr>
<tr>
<td>application-name</td>
<td>The name of the shortcut. If missing, the document title is used instead. </td>
</tr>
<tr>
<td>msapplication-tooltip</td>
<td>Optional text that is displayed as a tooltip when the mouse pointer hovers over the pinned site shortcut icon in the Windows Start menu or desktop. </td>
</tr>
<tr>
<td>msapplication-starturl</td>
<td>The root URL of the application. If missing, the address of the current page is used instead. Only HTTP, HTTPS, or FTP protocols are allowed. </td>
</tr>
<tr>
<td>msapplication-navbutton-color</td>
<td>The color of the <strong>Back</strong> and <strong>Forward</strong> buttons in the pinned site browser window. Any named color, or hex color value as defined by Cascading Style Sheets (CSS), Level 3 (CSS3) is valid. For more information, see <a href="http://msdn.microsoft.com/en-us/library/ms531197%28VS.85%29.aspx">Color Table</a>. If this <strong>meta</strong> element is absent, the color is based on the shortcut icon. </td>
</tr>
<tr>
<td>msapplication-window</td>
<td>The initial size of the pinned site browser window. Content sub-elements provide size as number <em>N</em>, separated by a semicolon.</p>
<ul>
<li>width=<em>N</em> (minimum 800)</li>
<li>height=<em>N</em> (minimum 600)</li>
</ul>
<p>				Note that user action overwrites this value. Windows preserves the user-generated window size when the user changes the size of the window and then closes the instance.
</td>
</tr>
</tbody>
</table>
<p>I could further customize the pinned site shortcut with start URL, initial window size, and navigation button color using the following code:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;meta name=&quot;msapplication-starturl&quot; content=&quot;http://blog.reybango.com/about/&quot;/&gt;
&lt;meta name=&quot;msapplication-window&quot; content=&quot;width=800;height=600&quot;/&gt;
&lt;meta name=&quot;msapplication-navbutton-color&quot; content=&quot;red&quot;/&gt;
</pre>
<h2>What About Other Browsers?</h2>
<p>Unfortunately, this feature is IE9-specific functionality and not available via other browsers or operating systems; only Windows. I really wish it was more portable because it&#8217;s a slick feature and I honestly don&#8217;t know if other browser makers could do something like this. Let&#8217;s see if they consider adopting this type of UX.</p>
<h2>Screencast</h2>
<p>To actually see how the pinning works and how jump lists appear, I created a screencast that explains the whole process:</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/DM-Tq-EMTVg?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DM-Tq-EMTVg?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="480"></embed></object></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2010/09/16/how-to-add-internet-explorer-9-jump-lists-to-your-site/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 9 Beta has Arrived! The Features that Matter to Me as a Developer.</title>
		<link>http://blog.reybango.com/2010/09/15/internet-explorer-9-beta-has-arrived-the-features-that-matter-to-me-as-a-developer/</link>
		<comments>http://blog.reybango.com/2010/09/15/internet-explorer-9-beta-has-arrived-the-features-that-matter-to-me-as-a-developer/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 17:44:01 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=1309</guid>
		<description><![CDATA[Wow, I can’t believe this day has come! After so many years of developers wishing for a better browser from Microsoft, one that was more consistent with web standards and would allow them to develop cross-browser websites leveraging the same markup, today marks the day that developers finally have that browser; Internet Explorer 9 Beta. [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Wow, I can’t believe this day has come! After so many years of developers wishing for a better browser from Microsoft, one that was more consistent with web standards and would allow them to develop cross-browser websites leveraging the same markup, today marks the day that developers finally have that browser; Internet Explorer 9 Beta. It’s an important day because this release, although just a beta, is the culmination of a lot of effort and most importantly, listening, by the Internet Explorer team. </p>
<p>While the Internet Explorer browser has enjoyed widespread adoption by consumers, it hasn’t always been viewed fondly by the development community. The important work of building cross-browser compliant websites has often been cumbersome, due in part to differing interpretations of browser APIs in previous versions of Internet Explorer.  The differences forced developers, myself included, to find workarounds for functionality that, in many cases, had a clearly defined standard behavior.  </p>
<h2>HTML5, CSS3, DOM</h2>
<p>With Internet Explorer 9, there’s been a concerted effort by Microsoft to focus on standards-based functionality that will ease cross-browser development while providing the features needed to build rich and immersive websites. Take, for example, IE9’s support for many of the features of HTML5 and CSS3, the specifications which are defining the future of the web. By including support for features such as Canvas, video, @font-face, CSS3 media queries, SVG and many others, we now have a rich base to provide more compelling experiences to end users. In addition, by ensuring that these features are conformant to the defined specifications, the sites we build should work with any browser that also supports those specifications.</p>
<p>To take it a step further, the IE team has enhanced the performance of many of the new HTML5 features by taking advantage of the GPU. This means that text, graphics and video will be substantially smoother and more responsive allowing websites to perform more like true applications. </p>
<p>And at the DOM level, important changes have been made to be consistent with the defined specifications making it easier to whittle down browser-specific code. For example, support for the W3C DOM Events specification (addEventListener &#038; removeEventListener) in place of the proprietary IE model (attacheEvent &#038; detachEvent) has been one of the most welcomed changes to IE9 as has the introduction of getElementsByClassName, supported for some time in the DOM Level 2 specification and now available in IE9.</p>
<h2>JavaScript</h2>
<p>Equally important is the performance boost provided by the new Chakra JavaScript engine which basically blows away older versions of Internet Explorer and brings IE9 in line with modern browsers such as Chrome, Firefox and Opera. JavaScript development continues to become more complex and intricate so the importance of these performance enhancements can’t be understated. The Chakra engine interprets, compiles, and executes code in parallel and takes advantage of multiple CPU cores when available and the results are obvious by the greatly improved benchmark scores from the <a href="http://www2.webkit.org/perf/sunspider-0.9.1/sunspider.html">Webkit Sunspider JavaScript Benchmarks</a>.</p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2010/09/01_02_Performance_Sunspider.png"><img src="http://blog.reybango.com/wp-content/uploads/2010/09/01_02_Performance_Sunspider-300x211.png" alt="" title="01_02_Performance_Sunspider" width="300" height="211" class="alignleft size-medium wp-image-1310" /></a></p>
<p><em>Chakra JavaScript Engine – WebKit SunSpider Benchmarks</em></p>
<h2>Updated Developer Tools</h2>
<p>Substantial work has been done to update the Internet Explorer Developer Tools. The built-in tools, usually found by pressing F12, provided quite a bit of capabilities but were missing key components that were essential to effective testing and debugging of client-side source code. With this update, the tools now include a much anticipated network traffic inspector, Console tab, CSS editing, and an improved JavaScript profiler.</p>
<p>The new Console tab is a welcome addition providing the ability to inspect script easily as well as receive important page-specific error and warning messages.</p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2010/09/console-tab.png"><img src="http://blog.reybango.com/wp-content/uploads/2010/09/console-tab-300x198.png" alt="" title="console-tab" width="300" height="198" class="alignleft size-medium wp-image-1312" /></a></p>
<p><em>IE Developer Tools – Console Tab</em></p>
<p>Of the new features, the one that I’m most excited about is the network traffic inspector, mainly because the bulk of my application development involves Ajax-based requests. </p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2010/09/ie-dev-tools-1.png"><img src="http://blog.reybango.com/wp-content/uploads/2010/09/ie-dev-tools-1-300x158.png" alt="" title="ie-dev-tools-1" width="300" height="158" class="alignleft size-medium wp-image-1311" /></a></p>
<p><em>IE Developer Tools – Network Performance of Specific Assets</em></p>
<p><a href="http://blog.reybango.com/wp-content/uploads/2010/09/ie-dev-tools-2.png"><img src="http://blog.reybango.com/wp-content/uploads/2010/09/ie-dev-tools-2-300x158.png" alt="" title="ie-dev-tools-2" width="300" height="158" class="alignleft size-medium wp-image-1313" /></a></p>
<p><em>IE Developer Tools – Network Request Information</em></p>
<p>I can now do such things as determine load times of specific assets or inspect my request/response headers, cookies and return values without the need for breaking out of the browser to a 3rd party application such as Fiddler or Charles.</p>
<h2>Get to Using it Today</h2>
<p>A lot of effort has gone into making Internet Explorer 9 Beta a better browser. There’s certainly more work to be done but the fact that we now have a version of IE that provides standards-based functionality and allows us to use the same markup across browsers is pretty hot. </p>
<p>To really appreciate what you can build with IE9, though, you need to just start digging into it. Microsoft has created the following sites to give developers the knowledge and inspiration they need to leverage IE9 to its fullest:</p>
<ul>
<li><a href="http://www.beautyoftheweb.com/">Beauty of the Web</a> – Explore all of the new features of Microsoft’s latest browser and check out the cool demos built using the advanced features of Internet Explorer 9 Beta</li>
<li><a href="http://ie.microsoft.com/testdrive/">Internet Explorer 9 Test Drive</a> – This site breaks down the new, advanced features of Internet Explorer 9 Beta and lets you get a visual of what’s possible with each bit of functionality</li>
<li><a href="http://msdn.microsoft.com/ie/ff468705.aspx">Internet Explorer Guide for Developers</a> – The developer documentation you’ll need to learn how about the specifics of Internet Explorer 9 Beta</li>
</ul>
<p>It feels great to know that we’re on a path to being able to build truly feature-rich websites that will be easier to maintain and provide a more exciting experience to users. While we’ll still need to support older browsers for some time, the fact that all the major browser vendors are heading in the same direction is going to allow us to build some truly amazing things. I can’t wait! </p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2010/09/15/internet-explorer-9-beta-has-arrived-the-features-that-matter-to-me-as-a-developer/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Update to the Google &amp; Safari Double Firing mouseup Issue</title>
		<link>http://blog.reybango.com/2010/04/15/update-to-the-google-safari-double-firing-mouseup-issue/</link>
		<comments>http://blog.reybango.com/2010/04/15/update-to-the-google-safari-double-firing-mouseup-issue/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 15:43:54 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=602</guid>
		<description><![CDATA[Yesterday, I wrote about an issue I was having with Google &#038; Safari&#8217;s way of handling text selection &#038; the &#8220;mouseup&#8221; event versus Firefox &#038; IE. I installed Opera 10.51 as well to ensure I tested this on the major browsers and Opera behaved just like Firefox &#038; IE. So this was definitely specific to [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Yesterday, <a href="http://blog.reybango.com/2010/04/14/my-solution-to-google-chrome-safari-double-firing-the-mouseup-event-when-selecting-text/">I wrote about an issue</a> I was having with Google &#038; Safari&#8217;s way of handling text selection &#038; the &#8220;mouseup&#8221; event versus Firefox &#038; IE. I installed Opera 10.51 as well to ensure I tested this on the major browsers and Opera behaved just like Firefox &#038; IE. So this was definitely specific to Chrome &#038; Safari (and I assume Webkit as well).</p>
<p>It was an odd scenario but using a closure I found a workaround. This morning I was happy to see a comment from my friend <a href="http://www.iport.it/">Diego Perini</a> with an explanation of what he feels is the cause and also an alternative fix. </p>
<blockquote><p>you have setup an on “mouseup” event so it is normal it fires each time you release the mouse button. You are filtering “mouseup” to act only if a selection exists, that’s ok. Unfortunately the difference between the browsers you mention is that in Firefox the selection is cleared as soon as the next “mousedown” while in Safari/Chrome it is cleared on “mouseup” so when fired your filtering will still find a selection active on Safari/Chrome, thus the second alert you see.</p>
<p>This is how you can alternatively fix that problem, just add these lines:</p>
<pre class="brush: jscript; title: ; notranslate">
function clearSelectedText() {
if (window.getSelection) {
window.getSelection().removeAllRanges();
} else if (document.getSelection) {
document.getSelection().empty();
} else {
var selection = document.selection &amp;&amp; document.selection.createRange();
if (selection.text) {
selection.collapse(true);
selection.select();
}
}
}

addEvent(document, “mousedown”, clearSelectedText);
</pre>
<p>Hope this help fix it and explain what happens in Safari/Chrome, I wouldn’t mark this as a bug. Have fun.</p></blockquote>
<p><a href="http://reybango.com/ms/test-diego.html">This did in fact fix it</a> and I like it much better because it avoids the need to attach a closure to an event, which could lead to a memory leak. Thanks Diego!</p>
<p>While this does provide a great workaround, it still leaves unanswered the reason that Chrome &#038; Safari (and Webkit??) behave differently than IE, Firefox &#038; Safari. I&#8217;m not sure if the expected behavior for &#8220;mouseup&#8221; &#038; &#8220;mousedown&#8221; when selected text is present is clearly defined in a specification but this is just another example of how lack of consensus causes web developers to jump through hurdles for no clear reason.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2010/04/15/update-to-the-google-safari-double-firing-mouseup-issue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My Solution to Google Chrome &amp; Safari Double Firing the mouseup Event when Selecting Text</title>
		<link>http://blog.reybango.com/2010/04/14/my-solution-to-google-chrome-safari-double-firing-the-mouseup-event-when-selecting-text/</link>
		<comments>http://blog.reybango.com/2010/04/14/my-solution-to-google-chrome-safari-double-firing-the-mouseup-event-when-selecting-text/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 01:50:44 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=577</guid>
		<description><![CDATA[I needed to write a quick bit of code today to track when a user selects any text on a page. The key was to bind a method to the &#8220;mouseup&#8221; event which would grab the selected text and do something with it. This was plain &#8216;ole JS and thankfully Dean Edwards and Tino Zijdel [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I needed to write a quick bit of code today to track when a user selects any text on a page. The key was to bind a method to the &#8220;mouseup&#8221; event which would grab the selected text and do something with it. This was plain &#8216;ole JS and thankfully <a href="http://dean.edwards.name">Dean Edwards</a> and <a href="http://crisp.tweakblogs.net/">Tino Zijdel</a> had created a nice <a href="http://therealcrisp.xs4all.nl/upload/addEvent_dean.html">cross-browser event handler routine</a> which worked great. And <a href="http://davidwalsh.name/">David Walsh</a> has a <a href="http://davidwalsh.name/text-selection-ajax">nice post on similar functionality</a> using MooTools &#038; jQuery so I was able to leverage some of that code that deals with grabbing the selected text:</p>
<pre class="brush: jscript; title: ; notranslate">
function findSelected() {
	if(window.getSelection) {
		return window.getSelection();
	}
	else if(document.getSelection) {
		return document.getSelection(); }
	else {
		var selection = document.selection &amp;&amp; document.selection.createRange();
		if(selection.text) {
			return selection.text; }
		return false;
	}
	return false;
}

function getSelectedText() {
	var selected = findSelected();
	if(selected &amp;&amp; (selected = new String(selected).replace(/^\s+|\s+$/g,''))) {
		alert( selected );
	}
}
</pre>
<p>From there it was just a matter of actually binding the method to &#8220;mouseup&#8221;:</p>
<pre class="brush: jscript; title: ; notranslate">
addEvent(document,&quot;mouseup&quot;,getSelectedText);
</pre>
<p>All of this seemed great and it worked perfectly in Internet Explorer and Firefox but when I tried it on Chrome, I found an issue. When I would select the whole line of text an alert box would appear which was expected but when I closed the box and clicked on any whitespace in the viewport, the alert box would reappear! To see it in action, try these steps:</p>
<ol>
<li>Using Chrome or Safari, open this page: <a href="http://reybango.com/ms/test.html">http://reybango.com/ms/test.html</a></li>
<li>Using your mouse select the <strong>whole</strong> line of the text and release. An alert box should appear.</li>
<li>Close the alert box and click on any whitespace in the viewport.</li>
</ol>
<p>In both Chrome and Safari, you should see that a second alert box is displayed containing the selected text. This doesn&#8217;t happen in Firefox or IE. It also won&#8217;t happen if you only select part of the text. It has to be the <strong>whole</strong> line.</p>
<p>After quite a bit of debugging, running it by <a href="http://ejohn.org/">John Resig</a> &#038; <a href="http://higginsforpresident.net/">Pete Higgins</a> and running short on time, I decided to create a work-around which resolved the issue. By using a closure to keep a persistent copy of the last selected text, I can compare that value to the newly selected text and if it matches the persistent copy, I can ignore it. It&#8217;s a very basic way to filter out the second call being done by Chrome &#038; Safari:</p>
<pre class="brush: jscript; title: ; notranslate">
getSelectedText = (function() {
	var selected = &quot;&quot;;

	return (function() {
		var currSelection = findSelected();
		if (selected != currSelection) {
			selected = currSelection;
			if(selected &amp;&amp; (selected = new String(selected).replace(/^\s+|\s+$/g,''))) {
				alert( selected );
			}
		}
	})
})();
</pre>
<p>Here&#8217;s the working <a href="http://reybango.com/ms/test-closure.html">demo</a>.</p>
<p>Now I acknowledge that this is not the ideal solution and I need to determine what the browser inconsistency is here. It seems like it might be Webkit-related since it only affects Chrome &#038; Safari so I&#8217;ll have to dig further into that. For now, though, the closure works and since I don&#8217;t do a circular reference between any DOM or JS objects, it looks like memory leaks shouldn&#8217;t be an issue. </p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2010/04/14/my-solution-to-google-chrome-safari-double-firing-the-mouseup-event-when-selecting-text/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Should a User Have a Choice When to Upgrade Their Browser?</title>
		<link>http://blog.reybango.com/2010/04/09/should-a-user-have-a-choice-when-to-upgrade-their-browser/</link>
		<comments>http://blog.reybango.com/2010/04/09/should-a-user-have-a-choice-when-to-upgrade-their-browser/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 16:28:51 +0000</pubDate>
		<dc:creator>Rey Bango</dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://blog.reybango.com/?p=565</guid>
		<description><![CDATA[I just did a post over on Ajaxian about Pingdom&#8217;s recent analysis of how frequently users upgrade their browsers. It&#8217;s a very conflicting topic for me which is why I chose to discuss it here. From the report, it shows that Google&#8217;s Chrome has by far the fastest upgrade time of all the browsers, generally [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.reybango.com/wp-content/uploads/2010/04/browsers.jpg"><img src="http://blog.reybango.com/wp-content/uploads/2010/04/browsers.jpg" alt="" title="browsers" width="580" height="126" class="aligncenter size-full wp-image-569" border="0" /></a></p>
<p>I just <a href="http://ajaxian.com/archives/getting-users-to-upgrade-their-browsers">did a post over on Ajaxian</a> about <a href="http://royal.pingdom.com/2010/04/08/the-modern-browser-wars-how-well-firefox-ie-and-chrome-succeed-in-getting-their-users-to-upgrade/">Pingdom&#8217;s recent analysis</a> of how frequently users upgrade their browsers. It&#8217;s a very conflicting topic for me which is why I chose to discuss it here.</p>
<p>From the report, it shows that Google&#8217;s Chrome has by far the fastest upgrade time of all the browsers, generally converting users within a month of a new release. This is primarily due to the browser&#8217;s use of automatic updating which has won accolades from many people in the development community who tend to cite IE6 still breathing as a great reason for having automatic updates.</p>
<p>This approach has both its merits and drawbacks. The obvious positive is that a user will receive important updates immediately ensuring that they will theoretically have a safer and more stable experience. The downside is that an update could actually mess up the browser (or computer) altogether as has happened on many occasions with antivirus programs. In addition, users no longer control the experience. Having worked at Mozilla, I know that they feel strongly that the user should have the ultimate choice of what goes on their computer. And I see the same thing now at Microsoft (where I&#8217;m now employed) and even Apple, where force-fed updates aren&#8217;t part of the process. They give users and companies the flexibility to decide when upgrading is right for them which I feel is <strong>extremely</strong> important. Obviously, the downside of the latter approach is that users are less inclined to actually upgrade, thus placing us into a situation where the 10-year old IE6 is still haunting us.</p>
<p>This is a tough situation because while users should have control, when they don&#8217;t upgrade it stifles developer abilities to push the web forward and can put these users at risk. I&#8217;m sure that the browser makers would be interested in your thoughts. What&#8217;s your take on this?</p>
<p><em><strong>Full Disclosure</strong>: I previously worked at Mozilla and I am now employed at Microsoft.</em></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2010/04/09/should-a-user-have-a-choice-when-to-upgrade-their-browser/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>3 Firefox Security Issues Fixed</title>
		<link>http://blog.reybango.com/2007/11/27/3-firefox-security-issues-fixed/</link>
		<comments>http://blog.reybango.com/2007/11/27/3-firefox-security-issues-fixed/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 15:40:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://www.intoajax.com/index.cfm/2007/11/27/3-Firefox-Security-Issues-Fixed</guid>
		<description><![CDATA[CNet is reporting that Mozilla has released an update to Firefox which patches 3 critical security issues: The first cross-site request forgery vulnerability could allow an attacker to generate a fake HTTP Referer header by exploiting a timing condition when setting the window.location property&#8230;. The second cross-site request forgery concerns the jar zip format enabling [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.news.com/8301-10784_3-9823744-7.html?part=rss&#038;subj=news&#038;tag=2547-1_3-0-5">CNet is reporting</a> that Mozilla has released an update to Firefox which patches 3 critical security issues:</p>
<blockquote style="margin-left:5px"><p>The first cross-site request forgery vulnerability could allow an attacker to generate a fake HTTP Referer header by exploiting a timing condition when setting the window.location property&#8230;.<br />
The second cross-site request forgery concerns the jar zip format enabling web sites to load pages packaged in zip archives containing signatures in java-archive format.</p></blockquote>
<p>More info about the issue can be found on <a href="http://www.news.com/8301-10784_3-9823744-7.html?part=rss&#038;subj=news&#038;tag=2547-1_3-0-5">CNet&apos;s  article</a> and the update is available for download via <a href="http://www.mozilla.com/en-US/firefox/?from=getfirefox">Mozilla Firefox&apos;s site</a>.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.reybango.com/2007/11/27/3-firefox-security-issues-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
