<?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>imranul hoque&#039;s blog &#187; Javascript</title>
	<atom:link href="http://www.imranulhoque.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imranulhoque.com</link>
	<description></description>
	<lastBuildDate>Fri, 04 Jun 2010 09:42:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hover effect on input element in IE6</title>
		<link>http://www.imranulhoque.com/javascript/hover-effect-on-input-element-in-ie6/</link>
		<comments>http://www.imranulhoque.com/javascript/hover-effect-on-input-element-in-ie6/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 19:25:13 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[hover]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=170</guid>
		<description><![CDATA[If you have ever tried to put a hover effect on any input element (submit, button etc) using css you must have faced the problem when you tested on IE6. Generally following is the css code we use to add the hover effect:

input.inputClass{background-color:#cccccc;color:#000000;}
input.inputClass:hover{background-color:#000000;color:#ffffff;}

This would change the background color and text color of any input field [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/javascript/hover-effect-on-input-element-in-ie6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Javascript Validation for Checkbox</title>
		<link>http://www.imranulhoque.com/javascript/simple-javascript-validation-for-checkbox/</link>
		<comments>http://www.imranulhoque.com/javascript/simple-javascript-validation-for-checkbox/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 10:14:29 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Javascript validation]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=154</guid>
		<description><![CDATA[There are times when we need to add javascript validation to check if at least one of a group of checkbox options has been checked. Here is a simple function that&#8217;ll solve the problem and works in most of the browsers.

&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Imran's checkbox validation&#60;/title&#62;
&#60;script language="javascript"&#62;
//frm is the form element
function checkForm(frm){
var destCount = frm.elements['dest[]'].length;
var destSel   [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/javascript/simple-javascript-validation-for-checkbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; Ajax file upload using Yahoo API</title>
		<link>http://www.imranulhoque.com/javascript/ajax-file-upload-yahoo-api/</link>
		<comments>http://www.imranulhoque.com/javascript/ajax-file-upload-yahoo-api/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 10:33:22 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[AJAX file upload]]></category>
		<category><![CDATA[Yahoo API]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=120</guid>
		<description><![CDATA[Web user interfaces have been very dynamic after the introduction of AJAX. People are now more used to with pages that do not refresh on every click. For developers it has been a challenge to build sites that are more user friendly and to achieve that file upload without refreshing the page is a big [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/javascript/ajax-file-upload-yahoo-api/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Show pound sign in input field by Javascript</title>
		<link>http://www.imranulhoque.com/javascript/show-pound-sign-in-input-field-by-javascript/</link>
		<comments>http://www.imranulhoque.com/javascript/show-pound-sign-in-input-field-by-javascript/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 08:00:56 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript currency sign]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=116</guid>
		<description><![CDATA[If you have ever tried to put pound sign (or any special character) in any input fields by Javascript, you know that it is not that straight forward. 
If we write code like this,
   document.getElementById('input_field_id').value = '£1000';
It&#8217;ll display some question mark(unrecognized character) instead of the pound sign.
So we need to put character&#8217;s unicode [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/javascript/show-pound-sign-in-input-field-by-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; Round numbers to some decimal places</title>
		<link>http://www.imranulhoque.com/javascript/javascript-round-numbers-to-some-decimal-places/</link>
		<comments>http://www.imranulhoque.com/javascript/javascript-round-numbers-to-some-decimal-places/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 00:57:05 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript round]]></category>
		<category><![CDATA[round numbers]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=101</guid>
		<description><![CDATA[Javascript&#8217;s Math.round function allows a user to round a float to an integer. But most of the time we need some function that&#8217;ll let us round the number to any decimal places we want. So here is the function that&#8217;ll solve your problem:
function roundNumber(num,decimal){
     var numerator = Math.round(num * Math.pow(10, decimal));
 [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/javascript/javascript-round-numbers-to-some-decimal-places/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Beginners &#8211; Select a dropdown option by value</title>
		<link>http://www.imranulhoque.com/javascript/javascript-beginners-select-a-dropdown-option-by-value/</link>
		<comments>http://www.imranulhoque.com/javascript/javascript-beginners-select-a-dropdown-option-by-value/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 01:59:12 +0000</pubDate>
		<dc:creator>Imran</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript select]]></category>
		<category><![CDATA[select by value]]></category>
		<category><![CDATA[select dropdown]]></category>

		<guid isPermaLink="false">http://www.imranulhoque.com/?p=93</guid>
		<description><![CDATA[A very simple and common issue a Javascript newbie often faces is how to select a dropdown option dynamically by value. People who are working for long with Javascript would solve it in minutes, but hey, this is for a newbie, remember?  
So this is a simple function I wrote to do the work.

 [...]]]></description>
		<wfw:commentRss>http://www.imranulhoque.com/javascript/javascript-beginners-select-a-dropdown-option-by-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
