Scribz.net™ has been using Internet Explorer 9′s Pinned Site capabilities for a long time, especially the Jump List features. And why not – they are so easy to implement and quite well-documented (see the Jump List documentation on MSDN). The basic functionality can be achieved by adding but a few meta-tags into the head of your page and you’re set. It actually takes more time to stitch together the page icons than to make your site IE9 ready.
Basic Setup
The following meta tags set the basic icon and text properties of your pinned site:
<meta name="application-name" content="Example Web Application"/> <meta name="msapplication-tooltip" content="Start Example.com in Site Mode"/> <meta name="msapplication-starturl" content=http://example.com/index.html/> <meta name="msapplication-window" content="width=800;height=600"/> <meta name="msapplication-navbutton-color" content="#77FF33"/>
You can read about the details for each item in the MSDN article linked above. Also please note that the msapplication-tooltip only shows when the user hovers over your application’s icon in the Start menu. I haven’t ever seen it pop up above the pinned Taskbar icon.
You can easily input any Unicode and international characters into the application-name and msapplication-tooltip content attribute by using HTML entities. Will this work for the msapplication-task meta tag, though?