<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>AmolNW's Blog</title>
	<atom:link href="http://amolnw.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://amolnw.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 08 Oct 2009 09:30:52 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='amolnw.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/92bfabd7619fcc7e0ee6f97686f6e613?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>AmolNW's Blog</title>
		<link>http://amolnw.wordpress.com</link>
	</image>
			<item>
		<title>IE6 offsetTop : issue and solution</title>
		<link>http://amolnw.wordpress.com/2009/10/08/ie6-offsettop-issue-and-solution/</link>
		<comments>http://amolnw.wordpress.com/2009/10/08/ie6-offsettop-issue-and-solution/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 09:13:35 +0000</pubDate>
		<dc:creator>Amol Nirmala Waman</dc:creator>
				<category><![CDATA[IE6]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://amolnw.wordpress.com/?p=56</guid>
		<description><![CDATA[Most of the developers feel pain when it comes to IE6. Actually it a positive result for a developer to handle IE6 related issues through either CSS or Javascript or any server side language.
Here we will focus on &#8216;offsetTop&#8216; &#8211; a Javascript method for positioning the element on a web page. It could be used [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=56&subd=amolnw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Most of the developers feel pain when it comes to IE6. Actually it a positive result for a developer to handle IE6 related issues through either CSS or Javascript or any server side language.</p>
<p>Here we will focus on &#8216;<strong>offsetTop</strong>&#8216; &#8211; a Javascript method for positioning the element on a web page. It could be used for menus or showing some contents in a DIV. So for that you can use</p>
<p><span style="color:#0000ff;">document.getElementById(id).style.top = element.offsetTop;</span></p>
<p>The above single line javascript code works fine in Firefox, Safari and in Chrome. But the javascript &#8216;offsetTop&#8217; method does not support in IE6 directly. It will show up the position of the element on the top but not relative to the parent element. To overcome this there is another method called &#8216;<strong>parentNode</strong>&#8216; in javascript. What it does? It first checks the position of the parent element and then assign the position to the element in a pixel which we want to show on &#8216;onmouseover&#8217; or &#8216;onclick&#8217; event.</p>
<p>Here is a simple javascript function you will need to call:</p>
<pre><span style="color:#339966;">function</span> <strong><span style="color:#0000ff;">showSubElement</span></strong>(id){
<span style="color:#339966;">   var</span> msie = 'Microsoft Internet Explorer';
<span style="color:#339966;">   var</span> elementToShow = <span style="color:#339966;">document.getElementById</span>('elementID');
<span style="color:#339966;">   var</span> elementOnShow = <span style="color:#339966;">document.getElementById</span>(id);
<span style="color:#339966;">   if</span> (<span style="color:#339966;">navigator.appName</span> == msie){
      elementToShow.style.top = elementOnShow.<span style="color:#339966;">parentNode.offsetTop</span>  +  'px';
   }<span style="color:#339966;">else</span>{
      elementToShow.style.top = elementOnShow.<span style="color:#339966;">offsetTop</span>;
   }
<span style="color:#99cc00;">   // To use ternary operators instead if-else, remove the if-else condition and un-comment following line.</span>
<span style="color:#99cc00;">   //</span> <span style="color:#99cc00;">elementToShow.style.top = (elementOnShow.offsetTop) + (navigator.appName == msie ? elementOnShow.parentNode.offsetTop : 'px');</span>
}
</pre>
<p>Now call this function on anchor:<br />
<span style="color:#0000ff;">&lt;a href=&#8221;javascript:void(0)&#8221; id=&#8221;a1&#8243; onmouseover=&#8221;showSubElement(&#8216;a1&#8242;)&#8221;&gt;</span>Show the contents on Mouseover<span style="color:#0000ff;">&lt;/a&gt;</span></p>
Posted in IE6, Javascript, Programming, Uncategorized, Web Development  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amolnw.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amolnw.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amolnw.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amolnw.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amolnw.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amolnw.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amolnw.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amolnw.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amolnw.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amolnw.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=56&subd=amolnw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amolnw.wordpress.com/2009/10/08/ie6-offsettop-issue-and-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">amolnw</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming languages and the Natural languages</title>
		<link>http://amolnw.wordpress.com/2009/09/21/programming-languages-and-the-natural-languages/</link>
		<comments>http://amolnw.wordpress.com/2009/09/21/programming-languages-and-the-natural-languages/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 15:28:33 +0000</pubDate>
		<dc:creator>Amol Nirmala Waman</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://amolnw.wordpress.com/2009/09/21/programming-languages-and-the-natural-languages/</guid>
		<description><![CDATA[Anyone can learn any language. Its same with computer programming languages also. You just need to think and act in that language. That&#8217;s it!
For example:
1) I have to say &#8216;Hello World!&#8217; in English, I need to know basic English language.
2) I have to say &#8216;Hello World!&#8217; in PHP, I need to think in PHP way. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=55&subd=amolnw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Anyone can learn any language. Its same with computer programming languages also. You just need to think and act in that language. That&#8217;s it!</p>
<p>For example:</p>
<p>1) I have to say &#8216;Hello World!&#8217; in English, I need to know basic English language.</p>
<p>2) I have to say &#8216;Hello World!&#8217; in PHP, I need to think in PHP way. What you need? You just need one line code. That&#8217;s It!</p>
</p>
<p>Isn&#8217;t this as simple as we learn our natural languages? YES it is!</p>
<p>There are more than 1.5 lakhs words in English language. But the fact is no one knows all the words. Same applies to programming languages also. No one knows all the ins and outs of any languages. Those who says that &#8216;I am a master of say PHP or C or C++ or ASP or RAILS or any other language&#8217;, they lies with the truth&#8230;</p>
Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amolnw.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amolnw.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amolnw.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amolnw.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amolnw.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amolnw.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amolnw.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amolnw.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amolnw.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amolnw.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=55&subd=amolnw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amolnw.wordpress.com/2009/09/21/programming-languages-and-the-natural-languages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">amolnw</media:title>
		</media:content>
	</item>
		<item>
		<title>Javascript Random Image on page refresh or onload</title>
		<link>http://amolnw.wordpress.com/2008/12/05/javascript-random-image-on-page-refresh-or-onload/</link>
		<comments>http://amolnw.wordpress.com/2008/12/05/javascript-random-image-on-page-refresh-or-onload/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 13:01:15 +0000</pubDate>
		<dc:creator>Amol Nirmala Waman</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://amolnw.wordpress.com/?p=33</guid>
		<description><![CDATA[Some times we need to randomize the images at same place with minimum script and occupy less memory and to decrease the size of a web page. There are lots of demos and examples available on net.I customize the code for one of my projects. It is tested and working fine on all today’s major [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=33&subd=amolnw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Some times we need to randomize the images at same place with minimum script and occupy less memory and to decrease the size of a web page. There are lots of demos and examples available on net.I customize the code for one of my projects. It is tested and working fine on all today’s major browsers (IE7, Firefox 3, Safari 3, Google Chrome).</p>
<p>Lets dig into the code…</p>
<p>The <span style="color:#0000ff;">Math.floor()</span> method returns the floor of the specified number or expression. The floor of a number is the closest integer that is less than or equal to the number. The <span style="color:#0000ff;">Math.random()</span> method returns a random number between <span style="color:#0000ff;">0 and 1</span>. I used a <span style="color:#0000ff;">for loop</span> to randomize the max number of images. So that I don’t need to specify each image name in my function. I am passing variable a in<span style="color:#0000ff;"> img[] array</span>. And variable i will randomize the <span style="color:#0000ff;">for loop</span>.</p>
<p>Here is the complete working <span style="color:#0000ff;">randomImage() function</span>:</p>
<p><span style="color:#0000ff;">function </span><span style="color:#993300;">randomImage()</span>{<br />
<span style="color:#0000ff;">var img = new Array();<br />
var img_path = &#8220;/path_of/images/&#8221;;<br />
var img_name = &#8220;image_&#8221;;<br />
var img_ext = &#8220;.gif&#8221;;<br />
var img_id = document.getElementById(&#8220;image_id&#8221;);<br />
for(var a= 0; a &lt; 8; a++){<br />
img[a] = img_path + img_name + a + img_ext;</span><br />
}<br />
<span style="color:#0000ff;">var i = Math.floor (Math.random() * a);<br />
img_id.src = img[i];</span><br />
}</p>
<p>Now call the randomImage function in a page where you want to be.<br />
<span style="color:#0000ff;">&lt;script type=&#8221;text/javascript&#8221;&gt;window.onload=randomImage;&lt;/script&gt;</span></p>
<p>You just need to specify the image tag with height and width of the image if all images are of same width and height.<br />
<span style="color:#0000ff;">&lt;img id=&#8221;image_id&#8221; width=&#8221;214&#8243; height=&#8221;259&#8243; /&gt;</span></p>
<p>And your browser will render the following result:<br />
<span style="color:#0000ff;">&lt;img height=&#8221;214&#8243; width=&#8221;259&#8243; id=&#8221;image_id&#8221; src=&#8221;/path_to/images/image_1.gif&#8221;/&gt;</span></p>
<p>Save your document. And refresh it to get the above result.<br />
If you want to make auto refresh the page use the meta tag:<br />
<span style="color:#0000ff;">&lt;meta http-equiv=&#8221;refresh&#8221; CONTENT=&#8221;5;URL=html_document.html&#8221;&gt;</span><br />
Where 5 is the <span style="color:#0000ff;">delay of seconds</span>.</p>
Posted in Javascript, Programming, Uncategorized, Web Development  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amolnw.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amolnw.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amolnw.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amolnw.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amolnw.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amolnw.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amolnw.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amolnw.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amolnw.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amolnw.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=33&subd=amolnw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amolnw.wordpress.com/2008/12/05/javascript-random-image-on-page-refresh-or-onload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">amolnw</media:title>
		</media:content>
	</item>
		<item>
		<title>Custom Checkbox &#8211; The Easiest Way&#8230;</title>
		<link>http://amolnw.wordpress.com/2008/11/18/custom-checkbox-the-easiest-way/</link>
		<comments>http://amolnw.wordpress.com/2008/11/18/custom-checkbox-the-easiest-way/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:40:37 +0000</pubDate>
		<dc:creator>Amol Nirmala Waman</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://amolnw.wordpress.com/?p=25</guid>
		<description><![CDATA[I was finding the solution on the net for custom checkbox for one of my projects. Yes there are lots of help and script available, but I found that those are very complicated and with huge scripts. To overcome this I created my simple and easy custom checkbox with crossbrowser compatibility,
What you will need?
1. Two [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=25&subd=amolnw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was finding the solution on the net for custom checkbox for one of my projects. Yes there are lots of help and script available, but I found that those are very complicated and with huge scripts. To overcome this I created my simple and easy custom checkbox with crossbrowser compatibility,</p>
<p><strong>What you will need?</strong><br />
1. Two Images: a) Empty Checkbox Image <a href="http://amolnw.files.wordpress.com/2008/11/nocheck1.gif"><img class="alignnone size-full wp-image-27" title="nocheck1" src="http://amolnw.files.wordpress.com/2008/11/nocheck1.gif?w=14&#038;h=14" alt="nocheck1" width="14" height="14" /></a>, b) Checked Checkbox Image <a href="http://amolnw.files.wordpress.com/2008/11/checked.gif"><img class="alignnone size-full wp-image-28" title="checked" src="http://amolnw.files.wordpress.com/2008/11/checked.gif?w=14&#038;h=14" alt="checked" width="14" height="14" /></a><br />
2. CSS<br />
3. Two Javascript functions<br />
&#8230; that&#8217;s it!</p>
<p>Lets build the custom checkbox.</p>
<p><strong>First create the javascript functions:</strong></p>
<p>function <span style="color:#0000ff;">chked</span>(<span style="color:#ff6600;">field, image1, image2</span>){<br />
document.getElementById(<span style="color:#ff6600;">image1</span>).style.display = <span style="color:#0000ff;">&#8216;none&#8217;</span>;<br />
document.getElementById(<span style="color:#ff6600;">image2</span>).style.display = <span style="color:#0000ff;">&#8216;block&#8217;</span>;<br />
document.getElementById(<span style="color:#ff6600;">field</span>).checked = <span style="color:#0000ff;">true</span>;<br />
}<br />
function <span style="color:#0000ff;">unchk</span>(<span style="color:#ff6600;">field, image1, image2</span>){<br />
document.getElementById(<span style="color:#ff6600;">image1</span>).style.display = <span style="color:#0000ff;">&#8216;block</span>&#8216;;<br />
document.getElementById(<span style="color:#ff6600;">image2<span style="color:#000000;">)</span></span>.style.display = <span style="color:#0000ff;">&#8216;none&#8217;</span>;<br />
document.getElementById(<span style="color:#ff6600;">field</span>).checked = <span style="color:#0000ff;">false</span>;<br />
}</p>
<p><strong>Now build the CSS:</strong></p>
<p>&lt;div id=&#8221;<span style="color:#0000ff;">checks</span>&#8220;&gt;<br />
&lt;img src=&#8221;<span style="color:#0000ff;">nocheck.gif</span>&#8221; width=&#8221;<span style="color:#0000ff;">14</span>&#8221; height=&#8221;<span style="color:#0000ff;">14</span>&#8221; id=&#8221;<span style="color:#0000ff;">img1</span>&#8221; onclick=&#8221;<span style="color:#0000ff;">chked</span>(&#8216;<span style="color:#ff6600;">check1</span>&#8216;, &#8216;<span style="color:#ff6600;">img1</span>&#8216;, &#8216;<span style="color:#ff6600;">img2</span>&#8216;);&#8221; /&gt;<br />
&lt;img src=&#8221;<span style="color:#0000ff;">checked.gif</span>&#8221; width=&#8221;<span style="color:#0000ff;">14</span>&#8221; height=&#8221;<span style="color:#0000ff;">14</span>&#8221; id=&#8221;<span style="color:#0000ff;">img2</span>&#8221; onclick=&#8221;<span style="color:#0000ff;">unchk</span>(&#8216;<span style="color:#ff6600;">check1</span>&#8216;, &#8216;<span style="color:#ff6600;">img1</span>&#8216;, &#8216;<span style="color:#ff6600;">img2</span>&#8216;);&#8221; style=&#8221;<span style="color:#0000ff;">display:none;</span>&#8221; /&gt;<br />
&lt;input type=&#8221;<span style="color:#0000ff;">checkbox</span>&#8221; name=&#8221;<span style="color:#0000ff;">check1</span>&#8221; id=&#8221;<span style="color:#0000ff;">check1</span>&#8221; class=&#8221;<span style="color:#0000ff;">noBorder</span>&#8221; /&gt;<br />
&lt;/div&gt;</p>
<p>This will look like below image:<br />
<a href="http://amolnw.files.wordpress.com/2008/11/custom_checkbox1.jpg"><img class="alignnone size-full wp-image-29" style="border:0 none;margin:0;" title="custom_checkbox1" src="http://amolnw.files.wordpress.com/2008/11/custom_checkbox1.jpg?w=170&#038;h=44" alt="custom_checkbox1" width="170" height="44" /></a></p>
<p>And the result will be:<br />
<a href="http://amolnw.files.wordpress.com/2008/11/custom_checkbox2.jpg"><img class="alignnone size-full wp-image-30" title="custom_checkbox2" src="http://amolnw.files.wordpress.com/2008/11/custom_checkbox2.jpg?w=164&#038;h=51" alt="custom_checkbox2" width="164" height="51" /></a></p>
<p>When the page gets load the unchecked image will be display and onlick event it goes away and checked image will popup instead and the checkbox field will also be checked on same event. So you can pass the value of checked checkbox for your rest of the functionality.</p>
<p><strong>Compare my solution to others:</strong><br />
1. <a href="http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/" target="_blank">http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/</a><br />
2. <a href="http://slayeroffice.com/code/custom_checkbox/?chkbox1=1&amp;chkbox2=2&amp;chkbox3=3" target="_blank">http://slayeroffice.com/code/custom_checkbox/?chkbox1=1&amp;chkbox2=2&amp;chkbox3=3</a><br />
3. <a href="http://www.maratz.com/blog/archives/2006/06/11/fancy-checkboxes-and-radio-buttons/" target="_blank">http://www.maratz.com/blog/archives/2006/06/11/fancy-checkboxes-and-radio-buttons/</a><br />
4. <a href="http://www.insidedhtml.com/tips/elements/ts19/page1.asp" target="_blank">http://www.insidedhtml.com/tips/elements/ts19/page1.asp</a></p>
Posted in Web Development  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amolnw.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amolnw.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amolnw.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amolnw.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amolnw.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amolnw.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amolnw.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amolnw.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amolnw.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amolnw.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=25&subd=amolnw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amolnw.wordpress.com/2008/11/18/custom-checkbox-the-easiest-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">amolnw</media:title>
		</media:content>

		<media:content url="http://amolnw.files.wordpress.com/2008/11/nocheck1.gif" medium="image">
			<media:title type="html">nocheck1</media:title>
		</media:content>

		<media:content url="http://amolnw.files.wordpress.com/2008/11/checked.gif" medium="image">
			<media:title type="html">checked</media:title>
		</media:content>

		<media:content url="http://amolnw.files.wordpress.com/2008/11/custom_checkbox1.jpg" medium="image">
			<media:title type="html">custom_checkbox1</media:title>
		</media:content>

		<media:content url="http://amolnw.files.wordpress.com/2008/11/custom_checkbox2.jpg" medium="image">
			<media:title type="html">custom_checkbox2</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Chrome Browser &#8211; Features</title>
		<link>http://amolnw.wordpress.com/2008/09/08/google-chrome-browser-features/</link>
		<comments>http://amolnw.wordpress.com/2008/09/08/google-chrome-browser-features/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 05:08:26 +0000</pubDate>
		<dc:creator>Amol Nirmala Waman</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Browser]]></category>

		<guid isPermaLink="false">http://amolnw.wordpress.com/?p=16</guid>
		<description><![CDATA[Google Chrome Features:
1.	Based on Apple Web Kit and also using Firefox plugins
2.	Faster than IE, FF, Safari
3.	Takes same time to download the homepage
4.	Good support for Javascript
5.	Good support for CSS2, CSS3
6.	Great support for AJAX
7.	Most of the time the entire page get refreshed
8.	Legend of Fieldset in Prototype popup comes in a middle like Safari
9.	The ‘File’ field displays similar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=16&subd=amolnw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Google Chrome Features:</strong><br />
1.	Based on Apple Web Kit and also using Firefox plugins<br />
2.	Faster than IE, FF, Safari<br />
3.	Takes same time to download the homepage<br />
4.	Good support for Javascript<br />
5.	Good support for CSS2, CSS3<br />
6.	Great support for AJAX<br />
7.	Most of the time the entire page get refreshed<br />
8.	Legend of Fieldset in Prototype popup comes in a middle like Safari<br />
9.	The ‘File’ field displays similar to Safari’s<br />
10.	Better for all kinds of Google apps<br />
11.	Completely ignores the html comments</p>
<p>&#8230; chrome is in a developing process so its possible that some of google&#8217;s developer will fix the issues.</p>
<p><strong>Detecting Chrome:</strong><br />
<span style="color:#0000ff;">&lt;script </span><span style="color:#ff0000;">type=</span>&#8216;text/javascript&#8217;<span style="color:#0000ff;">&gt;</span><br />
<span style="color:#ff0000;">window</span>.onload = <span style="color:#0000ff;">function </span>test(){<br />
<span style="color:#0000ff;"> var </span>chrome_name = <span style="color:#ff0000;">navigator</span>.appName;<br />
<span style="color:#0000ff;"> var </span>chrome_ver = <span style="color:#ff0000;">navigator</span>.appVersion;<br />
alert(<span style="color:#ff0000;">&#8216;Your browser is: &#8216;</span>+ chrome_name + <span style="color:#ff0000;">&#8216;\nChrome Details:\n&#8217; </span> + chrome_ver);<br />
}</p>
<p><a href="http://amolnw.files.wordpress.com/2008/09/chrome.png"><img class="alignnone size-full wp-image-17" title="chrome" src="http://amolnw.files.wordpress.com/2008/09/chrome.png?w=361&#038;h=150" alt="" width="361" height="150" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/amolnw.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/amolnw.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amolnw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amolnw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amolnw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amolnw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amolnw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amolnw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amolnw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amolnw.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amolnw.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amolnw.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amolnw.wordpress.com&blog=3524752&post=16&subd=amolnw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amolnw.wordpress.com/2008/09/08/google-chrome-browser-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">amolnw</media:title>
		</media:content>

		<media:content url="http://amolnw.files.wordpress.com/2008/09/chrome.png" medium="image">
			<media:title type="html">chrome</media:title>
		</media:content>
	</item>
	</channel>
</rss>