<?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>Roshan Bhattarai's Blog -  A blog about PHP, Ajax, JavaScript, CSS and Web 2.0 &#187; Browsers</title>
	<atom:link href="http://roshanbh.com.np/category/browsers/feed" rel="self" type="application/rss+xml" />
	<link>http://roshanbh.com.np</link>
	<description>Useful Tutorials, Scripts , Tips, and Resources for all PHP and Ajax beginners and experts .</description>
	<lastBuildDate>Thu, 10 Jun 2010 11:38:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to display panel (div) only in Internet Explorer (IE)</title>
		<link>http://roshanbh.com.np/2008/06/display-div-panel-only-internet-explorer-ie.html</link>
		<comments>http://roshanbh.com.np/2008/06/display-div-panel-only-internet-explorer-ie.html#comments</comments>
		<pubDate>Sat, 28 Jun 2008 17:13:00 +0000</pubDate>
		<dc:creator>Roshan</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[tips and technique]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[panel]]></category>

		<guid isPermaLink="false">http://roshanbh.com.np/?p=138</guid>
		<description><![CDATA[If you view this blog in Internet Explorer(IE), you&#8217;ll a small yellow panel in the top of this blog but you can&#8217;t see that block if you open this blog in other browsers. And, a lot of people has asked me how can we do that, today I would like to share that tips with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Fdisplay-div-panel-only-internet-explorer-ie.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Fdisplay-div-panel-only-internet-explorer-ie.html&amp;source=roshanbh&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">If you view this blog in Internet Explorer(IE), you&#8217;ll a small yellow panel in the top of this blog but you can&#8217;t see that block if you open this blog in other browsers. And, a lot of people has asked me how can we do that, today I would like to share that tips with you guys. This IE specific comments will be  easy for you to cope with the wired CSS bugs found in IE as well.<br />
<span id="more-138"></span></p>
<h4>To display panel (div) only in Internet Explorer (IE)</h4>
<pre class="prettyprint" style="overflow:auto">&lt;!--[if IE]&gt;
&lt;div&gt; Only displayed only in IE .&lt;/div&gt;
&lt;![endif]--&gt;</pre>
<h4>To display panel in non-IE browsers only</h4>
<pre class="prettyprint" style="overflow:auto">&lt;![if !IE]&gt;
&lt;div&gt;Only displyed in non IE browsers like FF, Safari etc.&lt;/div&gt;
&lt;![endif]&gt;</pre>
<h4>To display panel in IE 6 only</h4>
<pre class="prettyprint" style="overflow:auto">&lt;!--[if IE 6]&gt;
&lt;div&gt;Only displyed in non IE 6.&lt;/div&gt;
&lt;![endif]--&gt;</pre>
<h4>To display div in other IE versions except IE 5 (won&#8217;t be dislayed in NON-IE browsers)</h4>
<pre class="prettyprint" style="overflow:auto">&lt;!--[if !IE 5]&gt;
&lt;div&gt;
It will be displayed in other version of IE except IE 5.
It will not be displayed in non IE browsers.
&lt;/div&gt;
&lt;![endif]--&gt;</pre>
<h4>To display div in other IE versions except IE 6 (will be displayed in NON-IE browsers as well)</h4>
<pre class="prettyprint" style="overflow:auto">&lt;![if !IE 5]&gt;
&lt;div&gt;
It will be displayed in other version of IE except IE 5.
It will be displayed in non IE browsers.
&lt;/div&gt;
&lt;![endif]&gt;</pre>
<h4>To display panel in  greater version of IE 6 i.e. on IE 7 , IE 8 etc.</h4>
<pre class="prettyprint" style="overflow:auto">&lt;!--[if gt IE 6]&gt;
&lt;div&gt;Displayed in greater version of IE 6 i.e on IE 7 or IE 8 etc.&lt;/div&gt;
&lt;![endif]--&gt;</pre>
<h4>To display div in IE 6 and greater version of IE only</h4>
<pre class="prettyprint" style="overflow:auto">&lt;!--[if gte IE 6]&gt;
&lt;div&gt;It will be displayed in IE6 and other greater version of IE.&lt;/div&gt;
&lt;![endif]----&gt;</pre>
<h4>To display div in IE 7 and previous version of IE 7.</h4>
<pre class="prettyprint" style="overflow:auto">&lt;!--[if lte IE 7]&gt;
&lt;div&gt;
Displayed in IE 7 and lesser version of IE on IE 6 , IE 5 etc.
&lt;/div&gt;
&lt;![endif]--&gt;</pre>
</p>
<p style="text-align: justify;">Now, let me explain some specific terms you&#8217;ve seen out there in the conditions,</p>
<p style="text-align: justify;"><strong>lt </strong>- less than<br />
<strong>lte</strong> &#8211; less than or equal to<br />
<strong>gt</strong> &#8211; greter than<br />
<strong>gte</strong> &#8211; greater than or equal to</p>
<img src="http://roshanbh.com.np/?ak_action=api_record_view&id=138&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://roshanbh.com.np/2008/06/display-div-panel-only-internet-explorer-ie.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Useful Keyboard Shortcut keys in Mozilla Firefox</title>
		<link>http://roshanbh.com.np/2008/06/useful-keyboard-shortcut-keys-fiefox.html</link>
		<comments>http://roshanbh.com.np/2008/06/useful-keyboard-shortcut-keys-fiefox.html#comments</comments>
		<pubDate>Thu, 19 Jun 2008 10:41:27 +0000</pubDate>
		<dc:creator>Roshan</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://roshanbh.com.np/?p=132</guid>
		<description><![CDATA[Today, I was playing with Firefox 3 and really enjoyed surfing the net with Firefox 3. It looks really cool. Today, I discovered some of the useful keyboard shortcut keys for the Mozilla Firefox Browser. I want to share this with you guys. &#160; &#160; Useful Shortcut keys in Mozilla Firefox Ctrl + T &#8211; [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Fuseful-keyboard-shortcut-keys-fiefox.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Fuseful-keyboard-shortcut-keys-fiefox.html&amp;source=roshanbh&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p align="justify">Today, I was playing with Firefox 3 and really enjoyed surfing the net with Firefox 3. It looks really cool. Today, I discovered some of the useful keyboard shortcut keys for the Mozilla Firefox Browser.  I want to share this with you guys.</p>
<p><span id="more-132"></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h4>Useful Shortcut keys in Mozilla Firefox</h4>
<p><strong><span style="color: #008000;">Ctrl + T</span></strong> &#8211; Open new tab in the Firefox browser.</p>
<p><strong><span style="color: #008000;">Ctrl + W </span></strong>- Closes the active tab of the browser</p>
<p><strong><span style="color: #008000;">Ctrl + SHIFT + T</span></strong> &#8211; Reopens the recently closed Tab</p>
<p><strong><span style="color: #008000;">Middle Mouse Click</span></strong> &#8211; When you click the link with scrolling button, Firefox automatically opens the link in new tab</p>
<p><strong><span style="color: #008000;">Ctrl + L</span></strong> &#8211; Move the cursor to the address bar of the browser</p>
<p><strong><span style="color: #008000;">Ctrl + K</span></strong> &#8211; Move the cursor to the search bar of the top right side of Firefox</p>
<p><strong><span style="color: #008000;">SpaceBar</span></strong> &#8211; Scroll down the page</p>
<p><strong><span style="color: #008000;">Shift + SpaceBar</span></strong> &#8211; Scroll Up the page</p>
<p><span style="color: #008000;"><strong>Ctrl + &#8220;+&#8221;</strong> </span>- Zoom in the current web page</p>
<p><strong><span style="color: #008000;">Ctrl + &#8220;-&#8221;</span></strong> &#8211; Zoom out the current web page</p>
<p><strong><span style="color: #008000;">Ctrl + R</span></strong> or <strong><span style="color: #008000;">F5</span></strong> &#8211; Refresh the page</p>
<p><strong><span style="color: #008000;">Ctrl +  F5</span></strong> &#8211; Refresh the page fetching content from the server not from the cache</p>
<img src="http://roshanbh.com.np/?ak_action=api_record_view&id=132&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://roshanbh.com.np/2008/06/useful-keyboard-shortcut-keys-fiefox.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Firebug and Google Toolbar was not working for me in Firefox 3</title>
		<link>http://roshanbh.com.np/2008/06/firebug-and-google-toolbar-not-working-firefox-3.html</link>
		<comments>http://roshanbh.com.np/2008/06/firebug-and-google-toolbar-not-working-firefox-3.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 10:34:35 +0000</pubDate>
		<dc:creator>Roshan</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://roshanbh.com.np/?p=131</guid>
		<description><![CDATA[Today, I got the new and over talked Firefox 3 today. It looks great from all the point of view but there are some sad stuff along with this download for me. I couldn&#8217;t use some of my Firefox add-ons with this new version of Firefox3. &#160; &#160; Update : sorry guyz for posting it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Ffirebug-and-google-toolbar-not-working-firefox-3.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Ffirebug-and-google-toolbar-not-working-firefox-3.html&amp;source=roshanbh&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">Today, I got the new and over talked Firefox 3 today. It looks great from all the point of view but there are some sad stuff along with this download for me. I couldn&#8217;t use some of my Firefox add-ons with this new version of Firefox3.</p>
<p><span id="more-131"></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong><span style="color: #ff0000;">Update : </span>sorry guyz for posting it in a hurry, it&#8217;s working for me right now, actually id didn&#8217;t work in the first installation of Firefox 3, Thanks guyz for commenting.</strong></p>
<h4>Too sad, <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firbug</a> is not compatible</h4>
<p>I&#8217;m really upset that Firebug is not compatible with the current version. It is one of my favorite add-ons of Firefox. Firebug is very useful and popular add-ons among  web developers. Let&#8217;s hope new compatible version of firebug will be released asap.</p>
<h4>Google Toolbar is also not compatible</h4>
<p>Another one of the most popular add-ons of Mozilla, google toolbar is also not compatible with the Firefox 3. Come on, I store most of the bookmarks in Ggoogle and it seems that I won&#8217;t be able to store those books via Google Toolbar until this add-ons is revised for Firefox 3.</p>
<img src="http://roshanbh.com.np/?ak_action=api_record_view&id=131&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://roshanbh.com.np/2008/06/firebug-and-google-toolbar-not-working-firefox-3.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s set the &#8220;world record&#8221; by downloading Firefox 3</title>
		<link>http://roshanbh.com.np/2008/06/world-record-download-firefox-3.html</link>
		<comments>http://roshanbh.com.np/2008/06/world-record-download-firefox-3.html#comments</comments>
		<pubDate>Tue, 17 Jun 2008 18:52:30 +0000</pubDate>
		<dc:creator>Roshan</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://roshanbh.com.np/?p=130</guid>
		<description><![CDATA[Which is your favorite web browser? It&#8217;s not going to be IE if you&#8217;re a web designer of developer. My personal favorite browser is Mozilla Firefox. And it is the one of the most popular browser among the tech people. Today is one of the great day for Mozilla. They are officially lunching Firefox 3 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float:right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Fworld-record-download-firefox-3.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Froshanbh.com.np%2F2008%2F06%2Fworld-record-download-firefox-3.html&amp;source=roshanbh&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">Which is your favorite web browser? It&#8217;s not going to be IE  if you&#8217;re a web designer of developer. My personal favorite browser is   <strong>Mozilla Firefox</strong>. And it is the one of the most popular browser among the tech people. Today is one of the great day for Mozilla.</p>
<p><span id="more-130"></span></p>
<p style="text-align: justify;">They are officially lunching Firefox 3 and I couldn&#8217;t wait for it. It has a lot of new feature like one click bookmarking, much faster load times etc. You can get the detail of the new feature of the <a href="https://www.mozilla.com/en-US/firefox/3.0rc3/releasenotes/#whatsnew" target="_blank">Mozilla Firefox 3 from here</a>.</p>
<p style="text-align: justify;">And, <a href="http://www.spreadfirefox.com/en-US/worldrecord/" target="_blank">Spread Firefox</a> has announced to set the world record by downloading Firefox 3 within 24 hour when it  is available for download. And, I&#8217;m with it, I love this browser. Please download it within 24 hour to set this world record of most software downloaded in 24 hour.</p>
<p style="text-align: justify;">Here is the <a href="http://www.mozilla.com/en-US/firefox/?from=getfirefox" target="_blank">download page of the Firefox 3</a>, download it and let&#8217;s try to set the world record.</p>
<p style="text-align: justify;">But I&#8217;m waiting waiting waiting and waiting&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. and Now it is available for download.</p>
<p style="text-align: justify;"><span style="color: #ff0000;"><strong>UPDATE:</strong></span> <strong>It&#8217;s not going to break world record for sure&#8230;&#8230;Mozilla&#8217;s site is down after the download of Firefox 3 is available for download&#8230;&#8230;oufff&#8230;&#8230;Mozilla guyz, You let us down.</strong></p>
<p style="text-align: justify;"><span style="color: #ff0000;"><strong>UPDATE:</strong></span> <strong>It&#8217;s up again&#8230;.let&#8217;s start downloading it guys<br />
</strong></p>
<p style="text-align: justify;">
<img src="http://roshanbh.com.np/?ak_action=api_record_view&id=130&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://roshanbh.com.np/2008/06/world-record-download-firefox-3.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/24 queries in 0.418 seconds using disk: basic
Object Caching 701/746 objects using disk: basic

Served from: roshanbh.com.np @ 2012-02-08 20:40:13 -->
