<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Infopitcher</title>
	
	<link>http://www.infopitcher.com</link>
	<description>Jquery Tutorials, CMS  Tutorials, CSS  Tutorials, HTML  Tutorials</description>
	<lastBuildDate>Wed, 01 Feb 2012 06:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/infopitcher" /><feedburner:info uri="infopitcher" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to Change or remove WordPress Admin Default Text</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/MJ83GU6cX5A/</link>
		<comments>http://www.infopitcher.com/2012/01/how-to-change-or-remove-wordpress-admin-default-text/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 06:22:19 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hook]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=853</guid>
		<description><![CDATA[WordPress is one of the most famous CMS for blogging but nowadays it has been entended outside of just blogging, while doing other sites some of your clients may want to change some texts in the admin panel, so in [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is one of the most famous CMS for blogging but nowadays it has been entended outside of just blogging, while doing other sites some of your clients may want to change some texts in the admin panel, so in this post am going to explain about how to chage or remove some default functions (Copyright,Howdy,Version,Login logo,etc) in wordpress admin panel.</p>
<div id="attachment_890" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-890" title="how-to-change-or-remove-wordpress-admin-default-text" src="http://www.infopitcher.com/wp-content/uploads/2012/01/how-to-change-or-remove-wordpress-admin-default-text.jpg" alt="How to Change or remove WordPress Admin Default Text" width="550" height="154" /><p class="wp-caption-text">How to Change or remove WordPress Admin Default Text</p></div>
<p><span id="more-853"></span></p>
<h3>Code to Change wordpress admin Copyright text.</h3>
<p>Below is the code to change wordpress default copyright text</p>
<div class="code">
<pre>function remove_footer_admin () {
echo '&amp;copy; 2012 All Rights Reserved. Web Design &amp; Development Services Done by &lt;a href="http://www.yoursite.com" target="_blank"&gt;Yoursitename&lt;/a&gt;&lt;/p&gt;';
}
add_filter('admin_footer_text', 'remove_footer_admin');</pre>
</div>
<h3>Code to Remove wordpress admin footer version text.</h3>
<p>Below is the code to remove  wordpress admin footer version text.</p>
<div class="code">
<pre>function change_footer_version() {return '&amp;nbsp;';}
add_filter( 'update_footer', 'change_footer_version', 9999);</pre>
</div>
<h3>Code to Change admin Howdy Text</h3>
<p>Below is the code to change wordpress admin howdy text.</p>
<div class="code">
<pre>function change_howdy_text( $translation, $original ) {
    if( 'Howdy, %1$s' == $original )
        {
        $translation = 'Logged in as %1$s';
        }
        else if('Version 3.3.1' == $original)
        {
               $translation = '';
        }
    return $translation;
}
add_filter( 'gettext', 'change_howdy_text', 10, 2 );</pre>
</div>
<h3>Code to Change wordpress admin page title</h3>
<p>By default the word wordpress will come on every page title in wordpress admin section to change this with your site title  here is the code</p>
<div class="code">
<pre>add_filter('admin_title', 'my_admin_title', 10, 2);
function my_admin_title($admin_title, $title)
{
    return get_bloginfo('name').' &amp;shy; '.$title;
}</pre>
</div>
<h3>Code to Change WordPress Login Logo</h3>
<p>To change wordpress admin login page wordpress logo with your custom logo here is the code</p>
<div class="code">
<pre>function my_custom_login_logo() {
    echo '&lt;style&gt;
 h1 a { background-image:url('.get_bloginfo('template_directory').'/images/logo.gif) !important; }
   &lt;/style&gt;';
}
add_action('login_head', 'my_custom_login_logo');</pre>
</div>
<h3>Code to change wordpress admin login page logo URL</h3>
<p>To change wordpress admin login page wordpress logo link  with your custom link here is the code</p>
<div class="code">
<pre>add_filter( 'login_headerurl', 'my_custom_login_url' );
function my_custom_login_url($url) {
    return 'http://www.yoursite.com';
}
//Change Login Title
function custom_login_title($title) {
    return bloginfo('Your Site Name');;
}
add_filter( 'login_headertitle', 'custom_login_title' );</pre>
</div>
<h3>Code to add favicon to wordpress admin</h3>
<p>Below is the code to add favicon to wordpress admin section</p>
<div class="code">
<pre>function admin_favicon() {
        echo '&lt;link rel="Icon" href="'.get_bloginfo('stylesheet_directory').'/images/favicon.ico" /&gt;';
        echo '&lt;link rel="Shortcut Icon" href="'.get_bloginfo('stylesheet_directory').'/images/favicon.ico" /&gt;';
}
add_action('admin_head', 'admin_favicon');</pre>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/7utDHml2SEJG0VVxNL1nN2TIwyU/0/da"><img src="http://feedads.g.doubleclick.net/~a/7utDHml2SEJG0VVxNL1nN2TIwyU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7utDHml2SEJG0VVxNL1nN2TIwyU/1/da"><img src="http://feedads.g.doubleclick.net/~a/7utDHml2SEJG0VVxNL1nN2TIwyU/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2012/01/how-to-change-or-remove-wordpress-admin-default-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2012/01/how-to-change-or-remove-wordpress-admin-default-text/</feedburner:origLink></item>
		<item>
		<title>Show/Hide form elements based on radio button selections using jQuery</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/UZZxLp5DCfg/</link>
		<comments>http://www.infopitcher.com/2011/10/showhide-form-elements-based-on-radio-button-selections-using-jquery/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 18:18:42 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[hide show]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery hide show]]></category>
		<category><![CDATA[radio button]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=807</guid>
		<description><![CDATA[In this post we can see how to  show or hide certain form fields when a radio button selection happen  in your web form using jquery. To do this  you need a different DIV associated with that radio button to [...]]]></description>
			<content:encoded><![CDATA[<p>In this post we can see how to  <strong>show </strong>or <strong>hide </strong>certain form fields when a radio button selection happen  in your web form using <strong>jquery</strong>. To do this  you need a different DIV associated with that radio button to <strong>hide </strong>or <strong>show</strong> certain fields in the form. You can achive this very easily and efficiently using <strong>jquery</strong>.</p>
<div id="attachment_811" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/10/ShowHide-form-elements-based-on-radio-button-selections-using-jQuery.jpg"><img class="size-full wp-image-811" title="ShowHide-form-elements-based-on-radio-button-selections-using-jQuery" src="http://www.infopitcher.com/wp-content/uploads/2011/10/ShowHide-form-elements-based-on-radio-button-selections-using-jQuery.jpg" alt="Show/Hide form elements based on radio button selections using jQuery" width="550" height="211" /></a><p class="wp-caption-text">Show/Hide form elements based on radio button selections using jQuery</p></div>
<p><span id="more-807"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/showhide-form-elements-based-on-radio-button-selections-using-jquery/" target="_blank">Demo</a><a class="download-script" href="http://www.infopitcher.com/downloads/hide-show-radio-button.zip">Download</a></div>
<p>Just put a click function to the radio button group <strong>$(&#8220;input[name$='type']&#8220;).click </strong>and then get the value <strong>var radio = $(this).val()</strong> of the radio button. Once get the value of the radio button using the <strong>ID </strong>of the  DIV <strong> </strong>simply <strong>hide()</strong> or <strong>show()</strong> .</p>
<h3>Below is the complete script used in the demo</h3>
<div class="code">&lt;script&gt;<br />
$(document).ready(function(){<br />
$(&#8220;input[name$='type']&#8220;).click(function(){<br />
var radio = $(this).val();<br />
if(radio==&#8217;Individual&#8217;) {<br />
$(&#8220;#Individual_box&#8221;).show();<br />
$(&#8220;#Company_box&#8221;).hide();<br />
}<br />
else if(radio==&#8217;Company&#8217;) {<br />
$(&#8220;#Company_box&#8221;).show();<br />
$(&#8220;#Individual_box&#8221;).hide();<br />
}<br />
});<br />
$(&#8220;#Individual_box&#8221;).show();<br />
$(&#8220;#Company_box&#8221;).hide();<br />
});<br />
&lt;/script&gt;</div>
<p>Hope this post will help you.If you any have suggestions or comments  please post in comments sections.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/iw2ftddMhc3aWcCcyExp5dpm-4I/0/da"><img src="http://feedads.g.doubleclick.net/~a/iw2ftddMhc3aWcCcyExp5dpm-4I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/iw2ftddMhc3aWcCcyExp5dpm-4I/1/da"><img src="http://feedads.g.doubleclick.net/~a/iw2ftddMhc3aWcCcyExp5dpm-4I/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/10/showhide-form-elements-based-on-radio-button-selections-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/10/showhide-form-elements-based-on-radio-button-selections-using-jquery/</feedburner:origLink></item>
		<item>
		<title>Styling links by file type using CSS</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/Q-XSbF2Jzl4/</link>
		<comments>http://www.infopitcher.com/2011/09/styling-links-by-file-type-using-css/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 08:22:22 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[link style]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=792</guid>
		<description><![CDATA[In this post i would like to explain how to apply style to a link by using file type. In our web projects we can use many type of links (External link, PDF file,  ZIP file, mailto, doc file, etc&#8230;) and [...]]]></description>
			<content:encoded><![CDATA[<p>In this post i would like to explain how to apply style to a link by using file type. In our web projects we can use many type of links (External link, PDF file,  ZIP file, mailto, doc file, etc&#8230;) and we can style each link by link file type without using any class or id.</p>
<div id="attachment_794" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/09/Styling-links-by-file-type-CSS.jpg"><img class="size-full wp-image-794" title="Styling-links-by-file-type-CSS" src="http://www.infopitcher.com/wp-content/uploads/2011/09/Styling-links-by-file-type-CSS.jpg" alt="Styling links by file type using CSS" width="550" height="211" /></a><p class="wp-caption-text">Styling links by file type using CSS</p></div>
<p><span id="more-792"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/Styling links by file type using CSS/" target="_blank">Demo</a></div>
<p>Below is the style used in the demo link.  In this example i have changed the icon for links using file type.</p>
<p>There you can see i have specified like this a<strong>[href^="http://"] </strong>to style the links which has external links so i have mentioned http://  and similarly for email a<strong>[href^="mailto:"]</strong>, for pdf a<strong>[href$=".pdf"]</strong> and for a<strong>[href$=".zip"]</strong>. By using this you can style any type of link by using file type.</p>
<div class="code">&lt;style&gt;<br />
/* external links */<br />
a[href^="http://"]{<br />
padding-left: 20px;<br />
background: url(link.png) no-repeat center left;<br />
}<br />
/* emails */<br />
a[href^="mailto:"]{<br />
padding-left: 20px;<br />
background: url(email.png) no-repeat center left;<br />
}<br />
/* pdfs */<br />
a[href$=".pdf"]{<br />
padding-left: 20px;<br />
background: url(pdf.png) no-repeat center left;<br />
}<br />
/* zip */<br />
a[href$=".zip"]{<br />
padding-left: 20px;<br />
background: url(zip.png) no-repeat center left;<br />
}<br />
&lt;/style&gt;</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/C2ALp7-8xJpa_u0_26XBwYwMWnI/0/da"><img src="http://feedads.g.doubleclick.net/~a/C2ALp7-8xJpa_u0_26XBwYwMWnI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/C2ALp7-8xJpa_u0_26XBwYwMWnI/1/da"><img src="http://feedads.g.doubleclick.net/~a/C2ALp7-8xJpa_u0_26XBwYwMWnI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/09/styling-links-by-file-type-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/09/styling-links-by-file-type-using-css/</feedburner:origLink></item>
		<item>
		<title>html5 progress tag</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/TbQwVCGC7_w/</link>
		<comments>http://www.infopitcher.com/2011/09/html5-progress-tag/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 06:15:36 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Progress]]></category>
		<category><![CDATA[Progress bar]]></category>
		<category><![CDATA[Progress tag]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=774</guid>
		<description><![CDATA[The HTML5 &#60;progress&#62; tag is used to display  the progress of a task.The HTML5 &#60;progress&#62; element is used with javascript to display the progress of a task or process is underway. Demo &#60;progress value=&#8221;25&#8243; max=&#8221;100&#8243;&#62;&#60;/progress&#62; In the above HTML5 &#60;progress&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>The HTML5 <strong>&lt;progress&gt;</strong> tag is used to display  the progress of a task.The HTML5 &lt;progress&gt; element is used with javascript to display the progress of a task or process is underway.</p>
<div id="attachment_780" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/09/html5-progress-tag.jpg"><img class="size-full wp-image-780" title="html5-progress-tag" src="http://www.infopitcher.com/wp-content/uploads/2011/09/html5-progress-tag.jpg" alt="html5 progress tag" width="550" height="211" /></a><p class="wp-caption-text">html5 progress tag</p></div>
<p><span id="more-774"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/html-5-progress-tag/" target="_blank">Demo</a></div>
<div class="code">&lt;progress value=&#8221;25&#8243; max=&#8221;100&#8243;&gt;&lt;/progress&gt;</div>
<p>In the above HTML5 <strong>&lt;progress&gt;</strong> tag there are two attributes <strong>value </strong>and <strong>max </strong>are used . The <strong>value</strong> attribute is used to defines the current value of the progress and the <strong>max </strong>attribute is used to define the value of completion.</p>
<p>Below is the complete code to do progress bar with javascript. In this example the progress bar is updated every 0.5 second using JavaScript setInterval.</p>
<div class="code">&lt;!DOCTYPE HTML&gt;<br />
&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;script&gt;<br />
window.onload = function() {<br />
var bar = document.getElementById(&#8220;bar&#8221;),<br />
progress = document.getElementById(&#8220;progress &#8220;),<br />
loaded = 0;<br />
var load = function() {<br />
loaded += 10;<br />
bar.value = loaded;<br />
/* The below will be visible if the progress tag is not supported */<br />
$( progress).empty().append(&#8220;HTML5 progress tag not supported: &#8221; + loaded + &#8220;% loaded&#8221;);<br />
if(loaded == 100) {<br />
clearInterval(dummyLoad);<br />
}<br />
};<br />
var dummyLoad = setInterval(function() {<br />
load();<br />
} ,500);<br />
}<br />
&lt;/script&gt;<br />
The progress bar is updated every 0.5 second using JavaScript setInterval, see below: &lt;br /&gt;<br />
&lt;progress value=&#8221;0&#8243; max=&#8221;100&#8243;&gt; &lt;span&gt;&lt;!&#8211; Your fallback goes here &#8211;&gt;&lt;/span&gt; &lt;/ progress &gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/5OXthjOw1s1dYYhvMAqWyV_qsIE/0/da"><img src="http://feedads.g.doubleclick.net/~a/5OXthjOw1s1dYYhvMAqWyV_qsIE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5OXthjOw1s1dYYhvMAqWyV_qsIE/1/da"><img src="http://feedads.g.doubleclick.net/~a/5OXthjOw1s1dYYhvMAqWyV_qsIE/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/09/html5-progress-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/09/html5-progress-tag/</feedburner:origLink></item>
		<item>
		<title>HTML 5 details Tag</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/4IpJpL3rFDs/</link>
		<comments>http://www.infopitcher.com/2011/09/html-5-details-tag/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 09:54:16 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[detalis tag]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[summary tag]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=763</guid>
		<description><![CDATA[HTML5 &#60;details&#62; tag is used to specify additional details or controls and these can be hidded or show on demand. Open attribute is used to define hidded or show. It can be used with the HTML5 &#60;summary&#62; tag to provide [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 &lt;details&gt; tag is used to specify additional details or controls and these can be hidded or show on demand. Open attribute is used to define hidded or show. It can be used with the HTML5 &lt;summary&gt; tag to provide a heading that can be clicked to expand or collapse the details.</p>
<div id="attachment_766" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/09/HTML-5-details-Tag.jpg"><img class="size-full wp-image-766" title="HTML-5-details-Tag" src="http://www.infopitcher.com/wp-content/uploads/2011/09/HTML-5-details-Tag.jpg" alt="HTML 5 details Tag" width="550" height="211" /></a><p class="wp-caption-text">HTML 5 details Tag</p></div>
<p><span id="more-763"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/html-5-details-tag/" target="_blank">Demo</a></div>
<div class="code">&lt;details&gt;<br />
&lt;summary&gt;The Steve Jobs Way&lt;/summary&gt;<br />
&lt;p&gt;by Jay Elliot , William L. Simon&lt;br&gt;<br />
Spl Price Rs. 173/-&lt;/p&gt;<br />
&lt;/details&gt;<br />
&lt;details&gt;<br />
&lt;summary&gt;The Winning Way Learnings From Sport For Managers&lt;/summary&gt;<br />
&lt;p&gt;by Harsha Bhogle , Anita Bhogle&lt;br&gt;<br />
Spl Price Rs. 146/-&lt;/p&gt;<br />
&lt;/details&gt;<br />
&lt;details&gt;<br />
&lt;summary&gt;Life Is What You Make It&lt;/summary&gt;<br />
&lt;p&gt;by Preeti Shenoy&lt;br&gt;<br />
Spl Price Rs. 62/-&lt;/p&gt;<br />
&lt;/details&gt;</div>
<p>If you click on the text inside the summary element , the details element expands. If you click again, and it contracts. By default the details tag is in contract state. If you want to show in expand state use the attribute called <strong>open=&#8221;open&#8221;. </strong>Below is the example for this</p>
<div class="code">&lt;details open=&#8221;open&#8221;&gt;<br />
&lt;summary&gt;The Steve Jobs Way&lt;/summary&gt;<br />
&lt;p&gt;by Jay Elliot , William L. Simon&lt;br&gt;<br />
Spl Price Rs. 173/-&lt;/p&gt;<br />
&lt;/details&gt;</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/33da3--xaF8Y1Rl8i2aY4Q9A8kc/0/da"><img src="http://feedads.g.doubleclick.net/~a/33da3--xaF8Y1Rl8i2aY4Q9A8kc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/33da3--xaF8Y1Rl8i2aY4Q9A8kc/1/da"><img src="http://feedads.g.doubleclick.net/~a/33da3--xaF8Y1Rl8i2aY4Q9A8kc/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/09/html-5-details-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/09/html-5-details-tag/</feedburner:origLink></item>
		<item>
		<title>Animated Navigation Menu using CSS3</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/-wD1HtQFZME/</link>
		<comments>http://www.infopitcher.com/2011/09/animated-navigation-menu-css3/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 05:23:03 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Menu]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=740</guid>
		<description><![CDATA[In this post I am going to show  how to create an  animated navigation menu using CSS3 transition property.This kind of effect you have seen before using flash or JavaScript. Use it and make some thing better for your Navigation menu. [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I am going to show  how to create an  animated navigation menu using <strong>CSS3 transition</strong> property.This kind of effect you have seen before using flash or JavaScript. Use it and make some thing better for your Navigation menu.</p>
<div id="attachment_742" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/09/Animated-Navigation-Menu-CSS3.jpg"><img class="size-full wp-image-742" title="Animated-Navigation-Menu-CSS3" src="http://www.infopitcher.com/wp-content/uploads/2011/09/Animated-Navigation-Menu-CSS3.jpg" alt="Animated Navigation Menu CSS3" width="550" height="211" /></a><p class="wp-caption-text">Animated Navigation Menu CSS3</p></div>
<p><span id="more-740"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/animated-navigation-menu-CSS3/" target="_blank">Demo</a><a class="download-script" href="http://www.infopitcher.com/downloads/animated-navigation-menu-CSS3.zip">Download</a></div>
<h4>CSS code</h4>
<p>Here is the CSS code used  to get hover effect  using <strong>css3 </strong><strong>transition</strong>.First in the <strong>li </strong>we have used <strong>transition</strong> for the background image used in <strong>li </strong>using css <strong>background-position</strong> property and then we have used <strong>transition </strong>in the <strong>a</strong> tag using <strong>padding-left</strong> property to move the text.</p>
<div class="code">
<div id="_mcePaste">ul {</div>
<div id="_mcePaste">list-style:none;</div>
<div id="_mcePaste">border:1px solid #ddd;</div>
<div id="_mcePaste">float:left;</div>
<div id="_mcePaste">list-style:none;</div>
<div id="_mcePaste">margin:0;</div>
<div id="_mcePaste">padding:0;</div>
<div id="_mcePaste">font-family:arial;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li {</div>
<div id="_mcePaste">float:left;</div>
<div id="_mcePaste">border-left:1px solid #ddd;</div>
<div id="_mcePaste">line-height:30px;</div>
<div>
<div id="_mcePaste">-webkit-transition: background-position .3s ease-in;</div>
<div id="_mcePaste">-moz-transition: background-position .3s ease-in;</div>
<div id="_mcePaste">-o-transition: background-position .3s ease-in;</div>
<div id="_mcePaste">transition: background-position .3s ease-in;</div>
<div id="_mcePaste">}</div>
</div>
<div id="_mcePaste">ul li a {</div>
<div id="_mcePaste">font-size:12px;</div>
<div id="_mcePaste">line-height:30px;</div>
<div id="_mcePaste">display:inline-block;</div>
<div id="_mcePaste">text-decoration:none;</div>
<div id="_mcePaste">font-weight:bold;</div>
<div id="_mcePaste">color:#666;</div>
<div id="_mcePaste">padding-right:20px;</div>
<div id="_mcePaste">padding-left:5px;</div>
<div id="_mcePaste">-webkit-transition: padding-left .3s ease-in;</div>
<div id="_mcePaste">-moz-transition: padding-left .3s ease-in;</div>
<div id="_mcePaste">-o-transition: padding-left .3s ease-in;</div>
<div id="_mcePaste">transition: padding-left .3s ease-in;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li a:hover {</div>
<div id="_mcePaste">color:#09a0c8;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li.menu1 {</div>
<div id="_mcePaste">background:transparent url(home.png) no-repeat scroll -32px center;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li.menu2 {</div>
<div id="_mcePaste">background:transparent url(about.png) no-repeat scroll -32px center;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li.menu3 {</div>
<div id="_mcePaste">background:transparent url(product.png) no-repeat scroll -32px center;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li.menu4 {</div>
<div id="_mcePaste">background:transparent url(service.png) no-repeat scroll -32px center;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li.menu5 {</div>
<div id="_mcePaste">background:transparent url(contact.png) no-repeat scroll -32px center;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li a:hover {</div>
<div id="_mcePaste">padding-left:40px;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">ul li:hover {</div>
<div id="_mcePaste">background-position: 8px center;</div>
<div id="_mcePaste">}</div>
</div>
<h4>HTML Code</h4>
<div class="code">&lt;ul id=&#8221;navigation1&#8243;&gt;<br />
&lt;li class=&#8221;menu1&#8243;&gt;&lt;a href=&#8221;#&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;menu2&#8243;&gt;&lt;a href=&#8221;#&#8221;&gt;About Us&lt;/a&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;menu3&#8243;&gt;&lt;a href=&#8221;#&#8221;&gt;Products&lt;/a&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;menu4&#8243;&gt;&lt;a href=&#8221;#&#8221;&gt;Services&lt;/a&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;menu5&#8243;&gt;&lt;a href=&#8221;#&#8221;&gt;Contact Us&lt;/a&gt;&lt;/li&gt;&gt;<br />
&lt;/ul&gt;</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/1IAiNVCvD-V3WzC2HLyHX59Fnwg/0/da"><img src="http://feedads.g.doubleclick.net/~a/1IAiNVCvD-V3WzC2HLyHX59Fnwg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1IAiNVCvD-V3WzC2HLyHX59Fnwg/1/da"><img src="http://feedads.g.doubleclick.net/~a/1IAiNVCvD-V3WzC2HLyHX59Fnwg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/09/animated-navigation-menu-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/09/animated-navigation-menu-css3/</feedburner:origLink></item>
		<item>
		<title>HTML5 datalist Tag</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/mQpphHJLerU/</link>
		<comments>http://www.infopitcher.com/2011/09/html5-datalist-tag/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 10:27:28 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[datalist]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=708</guid>
		<description><![CDATA[To provide an autocomplete feature on form element HTML5 has introduced a tag called &#60;datalist&#62;. To do autocomplete for form elements so far we have used scripts now its very easy using HTML5 &#60;datalist&#62; tag. Demo The list in &#60;datalist&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>To provide an autocomplete feature on form element HTML5 has introduced a tag called <strong>&lt;datalist&gt;</strong>. To do autocomplete for form elements so far we have used scripts now its very easy using <strong>HTML5 &lt;datalist&gt;</strong> tag.</p>
<div id="attachment_717" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/09/HTML5-datalist-tag.jpg"><img class="size-full wp-image-717" title="HTML5-datalist-tag" src="http://www.infopitcher.com/wp-content/uploads/2011/09/HTML5-datalist-tag.jpg" alt="HTML 5 &lt;datalist&gt; Tag" width="550" height="211" /></a><p class="wp-caption-text">HTML 5  Tag</p></div>
<p><span id="more-708"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/html5-datalist/" target="_blank">Demo</a></div>
<p>The list in <strong>&lt;datalist&gt;</strong> tags is linked using the <strong>&lt;datalist&gt;</strong> tag ID. For example, if your &lt;datalist&gt; tag ID is<em> </em><strong>titlelist</strong> then you need to indentify this in your input field as <em>list=”</em><strong>titlelist</strong><em>”</em>( like this &lt;input type=&#8221;text&#8221; list=&#8221;titlelist&#8221;&gt;) .</p>
<p>You can fill the <code>&lt;datalist&gt;</code> element by nesting <code>&lt;option&gt;</code> tags inside the <code>&lt;datalist&gt;</code> tag. Like the below code</p>
<div class="code">&lt;datalist&gt;<br />
&lt;option value=&#8221;Afghanistan&#8221;&gt;<br />
&lt;option value=&#8221;Akrotiri&#8221;&gt;<br />
&lt;option value=&#8221;Albania&#8221;&gt;<br />
&lt;option value=&#8221;Algeria&#8221;&gt;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
&lt;option value=&#8221;Zambia&#8221;&gt;<br />
&lt;option value=&#8221;Zimbabwe&#8221;&gt;<br />
&lt;/datalist&gt;</div>
<p>Below is the complete code used in the HTML 5 datalist Tag demo link.</p>
<div class="code">&lt;!DOCTYPE HTML&gt;<br />
&lt;html&gt;<br />
&lt;body&gt;</p>
<div id="_mcePaste">&lt;form action=&#8221;#&#8221; method=&#8221;get&#8221;&gt;</div>
<div id="_mcePaste">&lt;p&gt;Country: &lt;br&gt;</div>
<div id="_mcePaste">&lt;input type=&#8221;text&#8221; name=&#8221;title&#8221; id=&#8221;title&#8221; list=&#8221;titlelist&#8221;&gt;</div>
<div id="_mcePaste">&lt;/p&gt;</div>
<div id="_mcePaste">&lt;datalist id=&#8221;titlelist&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Afghanistan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Akrotiri&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Albania&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Algeria&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;American Samoa&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Andorra&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Angola&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Anguilla&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Antarctica&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Antigua and Barbuda&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Argentina&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Armenia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Aruba&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Ashmore and Cartier Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Australia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Austria&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Azerbaijan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bahamas&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bahrain&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bangladesh&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Barbados&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bassas da India&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Belarus&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Belgium&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Belize&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Benin&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bermuda&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bhutan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bolivia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bosnia and Herzegovina&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Botswana&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bouvet Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Brazil&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;British Indian Ocean Territory&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;British Virgin Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Brunei&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Bulgaria&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Burkina FasovBurma&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Burundi&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cambodia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cameroon&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Canada&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cape Verde&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cayman Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Central African Republic&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Chad&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Chile&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;China&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Christmas Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Clipperton Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cocos (Keeling) Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Colombia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Comoros&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Congo, Democratic Republic of the&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Congo, Republic of the&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cook Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Coral Sea Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Costa Rica&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cote d&#8217;Ivoire&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Croatia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cuba&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;"&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Cyprus&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Czech Republic&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Denmark&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Dhekelia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Djibouti&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Dominica&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Dominican Republic&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Ecuador&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Egypt&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;El Salvador&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Equatorial Guinea&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Eritrea&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Estonia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Ethiopia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Europa Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Falkland Islands (Islas Malvinas)&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Faroe Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Fiji&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Finland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;France&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;French Guiana&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;French Polynesia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;French Southern and Antarctic Lands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Gabon&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Gambia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Gaza Strip&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Georgia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Germany&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Ghana&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Gibraltar&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Glorioso Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Greece&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Greenland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Grenada&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guadeloupe&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guam&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guatemala&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guernsey&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guinea&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guinea-Bissau&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Guyana&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Haiti&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Heard Island and McDonald Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Holy See (Vatican City)&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Honduras&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Hong Kong&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Hungary&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Iceland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;India&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Indonesia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Iran&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Iraq&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Ireland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Isle of Man&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Israel&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Italy&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Jamaica&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Jan Mayen&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Japan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Jersey&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Jordan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Juan de Nova Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Kazakhstan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Kenya&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Kiribati&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Korea, North&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Korea, South&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Kuwait&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Kyrgyzstan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Laos&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Latvia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Lebanon&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Lesotho&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Liberia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Libya&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Liechtenstein&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Lithuania&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Luxembourg&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Macau&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Macedonia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Madagascar&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Malawi&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Malaysia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Maldives&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mali&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Malta&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Marshall Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Martinique&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mauritania&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mauritius&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mayotte&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mexico&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Micronesia, Federated States of&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Moldovav&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Monaco&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mongolia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Montserrat&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Morocco&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Mozambique&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Namibia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Nauru&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Navassa Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Nepal&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Netherlands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Netherlands Antilles&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;New Caledonia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;New Zealand&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Nicaragua&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Niger&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Nigeria&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Niue&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Norfolk Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Northern Mariana Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Norway&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Oman&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Pakistan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Palau&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Panama&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Papua New Guinea&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Paracel Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Paraguay&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Peru&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Philippines&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Pitcairn Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Poland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Portugal&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Puerto Ricov&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Qatar&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Reunion&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Romania&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Russia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Rwanda&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Saint Helena&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Saint Kitts and Nevis&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Saint Lucia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Saint Pierre and Miquelon&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Saint Vincent and the Grenadines&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Samoa&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;San Marino&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Sao Tome and Principe&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Saudi Arabia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Senegal&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Serbia and Montenegro&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Seychelles&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Sierra Leone&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Singapore&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Slovakia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Slovenia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Solomon Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Somalia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;South Africa&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;South Georgia and the South Sandwich Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Spain&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Spratly Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Sri Lanka&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Sudan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Suriname&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Svalbard&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Swaziland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Sweden&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Switzerland&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Syria&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Taiwan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tajikistan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tanzania&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Thailand&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Timor-Leste&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Togo&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tokelau&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tonga&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Trinidad and Tobago&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tromelin Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tunisia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Turkey&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Turkmenistan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Turks and Caicos Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Tuvalu&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Uganda&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Ukraine&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;United Arab Emirates&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;United Kingdom&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;United States&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Uruguay&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Uzbekistan&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Vanuatu&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Venezuela&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Vietnam&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Virgin Islands&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Wake Island&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Wallis and Futuna&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;West Bank&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Western Sahara&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Yemen&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Zambia&#8221;&gt;</div>
<div id="_mcePaste">&lt;option value=&#8221;Zimbabwe&#8221;&gt;</div>
<div id="_mcePaste">&lt;/datalist&gt;</div>
<div id="_mcePaste">&lt;input type=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;</div>
<div id="_mcePaste">&lt;/form&gt;</div>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/SjF8iFURZoz6MR6P_5C3YCaGArc/0/da"><img src="http://feedads.g.doubleclick.net/~a/SjF8iFURZoz6MR6P_5C3YCaGArc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SjF8iFURZoz6MR6P_5C3YCaGArc/1/da"><img src="http://feedads.g.doubleclick.net/~a/SjF8iFURZoz6MR6P_5C3YCaGArc/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/09/html5-datalist-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/09/html5-datalist-tag/</feedburner:origLink></item>
		<item>
		<title>HTML5 placeholder Attribute</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/7zr9KFFBxYA/</link>
		<comments>http://www.infopitcher.com/2011/08/html5-placeholder-attribute/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 20:47:44 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[placeholder]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=688</guid>
		<description><![CDATA[HTML5 has introduced many new features include placeholder attribute to input elements. The placeholder attribute is used to show text in the text field until the text field is focused. So far you can do this by using javascript. Demo [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 has introduced many new features include placeholder attribute to input elements. The placeholder attribute is used to show text in the text field until the text field is focused. So far you can do this by using javascript.</p>
<div id="attachment_703" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/08/HTML5-placeholder.jpg"><img class="size-full wp-image-703" title="HTML5-placeholder" src="http://www.infopitcher.com/wp-content/uploads/2011/08/HTML5-placeholder.jpg" alt="HTML5 placeholder Attribute" width="550" height="211" /></a><p class="wp-caption-text">HTML5 placeholder Attribute</p></div>
<p><span id="more-688"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/html5-placeholder/" target="_blank">Demo</a></div>
<p>Here is the code used in the above demo link. In the text field you can see the <em>placeholder</em> attribute to show text in the text field until the text field is focused. That&#8217;s it hope you can use this placeholder attribute in your future projects.</p>
<div class="code">&lt;!DOCTYPE HTML&gt;<br />
&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;form action=&#8221;#&#8221; method=&#8221;get&#8221;&gt;<br />
&lt;p&gt;Name: &lt;br&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;user_name&#8221; placeholder=&#8221;Enter Your Name&#8221; /&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;E-mail: &lt;br&gt;<br />
&lt;input type=&#8221;password&#8221; name=&#8221;user_name&#8221; placeholder=&#8221;Enter E-mail id&#8221; /&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;Website: &lt;br&gt;<br />
&lt;input type=&#8221;password&#8221; name=&#8221;user_name&#8221; placeholder=&#8221;Website&#8221; /&gt;<br />
&lt;/p&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>
<p>Hope you enjoy this article, if you have any doubts please post your comment below.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/GDF9WWTOMafhqJJQR671iOQ8t7E/0/da"><img src="http://feedads.g.doubleclick.net/~a/GDF9WWTOMafhqJJQR671iOQ8t7E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GDF9WWTOMafhqJJQR671iOQ8t7E/1/da"><img src="http://feedads.g.doubleclick.net/~a/GDF9WWTOMafhqJJQR671iOQ8t7E/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/08/html5-placeholder-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/08/html5-placeholder-attribute/</feedburner:origLink></item>
		<item>
		<title>HTML5 form validation</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/liqx9Zhkr5s/</link>
		<comments>http://www.infopitcher.com/2011/08/html5-form-validation/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 19:55:07 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[HTML validation]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[html5tutorial]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=667</guid>
		<description><![CDATA[HTML5 has introduced many new features for input types. These new features allow you to do better input control and validation without using any script. So here is a simple form example using HTML5 input types. Demo To Validate Required [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 has introduced many new features for input types. These new features allow you to do better input control and validation without using any script. So here is a simple form example using HTML5 input types.</p>
<div id="attachment_668" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/08/HTML5-form-validation.jpg"><img class="size-full wp-image-668" title="HTML5-form-validation" src="http://www.infopitcher.com/wp-content/uploads/2011/08/HTML5-form-validation.jpg" alt="HTML5 form validation" width="550" height="211" /></a><p class="wp-caption-text">HTML5 form validation</p></div>
<p><span id="more-667"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/html5-form-validation/" target="_blank">Demo</a></div>
<h4>To Validate Required field</h4>
<p>To validate a required field in your form simply set <em>required=&#8221;required&#8221;</em>.</p>
<div class="code">&lt;form action=&#8221;#&#8221; method=&#8221;get&#8221;&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;user_name&#8221;  required=&#8221;required&#8221; /&gt;<br />
&lt;/form&gt;</div>
<h4>To validate E-mail field</h4>
<p>Just set type as <em>type=&#8221;email&#8221;</em>.</p>
<div class="code">&lt;form action=&#8221;#&#8221; method=&#8221;get&#8221;&gt;<br />
&lt;input type=&#8221;email&#8221; name=&#8221;user_email&#8221;  required=&#8221;required&#8221; /&gt;<br />
&lt;/form&gt;</div>
<h4>To validate url field</h4>
<p>Just set type as <em>type=&#8221;url&#8221;</em>.</p>
<div class="code">&lt;form action=&#8221;#&#8221; method=&#8221;get&#8221;&gt;<br />
&lt;input type=&#8221;url&#8221; name=&#8221;user_url&#8221;   required=&#8221;required&#8221;  /&gt;<br />
&lt;/form&gt;</div>
<p>Below is the complete code used in the demo.</p>
<div class="code">&lt;!DOCTYPE HTML&gt;<br />
&lt;html&gt;<br />
&lt;title&gt;HTML5 form validation : Demo&lt;/title&gt;<br />
&lt;body&gt;<br />
&lt;form action=&#8221;#&#8221; method=&#8221;get&#8221;&gt;<br />
&lt;p&gt;Name: &lt;br /&gt;&lt;input type=&#8221;text&#8221; name=&#8221;user_name&#8221;  required=&#8221;required&#8221; /&gt;&lt;/p&gt;<br />
&lt;p&gt;E-mail: &lt;br /&gt;&lt;input type=&#8221;email&#8221; name=&#8221;user_email&#8221;  required=&#8221;required&#8221; /&gt;&lt;/p&gt;<br />
&lt;p&gt;Website:  &lt;br /&gt;&lt;input type=&#8221;url&#8221; name=&#8221;user_url&#8221;  required=&#8221;required&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Message&lt;br/&gt;&lt;textarea rows=&#8221;5&#8243; cols=&#8221;16&#8243;&gt;&lt;/textarea&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;input type=&#8221;submit&#8221; /&gt;&lt;/p&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>
<p>Hope you enjoy this article, if you have any doubts please post your comment below.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/NG88cFqCSdbb3z4W-bI-3t0ZQNQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/NG88cFqCSdbb3z4W-bI-3t0ZQNQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NG88cFqCSdbb3z4W-bI-3t0ZQNQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/NG88cFqCSdbb3z4W-bI-3t0ZQNQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/08/html5-form-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/08/html5-form-validation/</feedburner:origLink></item>
		<item>
		<title>Enable HTML5 video and audio tag in all major browsers.</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/6ZVzeEjDhLA/</link>
		<comments>http://www.infopitcher.com/2011/08/enable-html5-video-and-audio-tag-in-all-major-browsers/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 18:13:46 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=652</guid>
		<description><![CDATA[HTML5 is the latest version of HTML, it has introduced many new features including the features like &#60;video&#62; and &#60;audio&#62; tag , but this tags are not compatablity with all major browsers.Here is a javascript called html5media to solve this. [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 is the latest version of HTML, it has introduced many new features including the features like &lt;video&gt; and &lt;audio&gt; tag , but this tags are not compatablity with all major browsers.Here is a javascript called <a href="http://html5media.info/" target="_blank"><strong>html5media</strong></a> to solve this.</p>
<div id="attachment_653" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/08/Enable-HTML5-video-and-audio-tag-in-all-major-browsers.jpg"><img class="size-full wp-image-653" title="Enable HTML5 video and audio tag in all major browsers" src="http://www.infopitcher.com/wp-content/uploads/2011/08/Enable-HTML5-video-and-audio-tag-in-all-major-browsers.jpg" alt="" width="550" height="211" /></a><p class="wp-caption-text">Enable HTML5 video and audio tag in all major browsers</p></div>
<p><span id="more-652"></span></p>
<div class="clearfix">
<a class="live-demo" href="http://www.infopitcher.com/demo/html5-video-audio/" target="_blank">Demo</a></div>
<p><a href="http://html5media.info/" target="_blank"><strong>html5media</strong></a> is a javascript which enables all major browser to play media tags like &lt;video&gt; and &lt;audio&gt;.</p>
<h4><span style="font-weight: normal;">Script to enable Embed video and audio tag in all major browsers.</span></h4>
<p>Enable &lt;video&gt; and &lt;audio&gt; tags in all major browsers.Here is the script to enable this.</p>
<div class="code">&lt;script src=&#8221;http://api.html5media.info/1.1.4/html5media.min.js&#8221;&gt;&lt;/script&gt;</div>
<p>Just paste the above script somewhere in the &lt;head&gt; of your document</p>
<h4><span style="font-weight: normal;">Embed video</span></h4>
<p>Just embed video like the  code below.</p>
<div class="code">&lt;video src=&#8221;video.mp4&#8243; width=&#8221;320&#8243; height=&#8221;200&#8243; controls preload&gt;&lt;/video&gt;</div>
<h4><span style="font-weight: normal;">Embed audio</span></h4>
<p>Just embed audio like the  code below.</p>
<div class="code">&lt;audio src=&#8221;audio.mp3&#8243; controls preload&gt;&lt;/audio&gt;</div>

<p><a href="http://feedads.g.doubleclick.net/~a/uveGCc14A1C5yGJebCxqEtJDEPY/0/da"><img src="http://feedads.g.doubleclick.net/~a/uveGCc14A1C5yGJebCxqEtJDEPY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/uveGCc14A1C5yGJebCxqEtJDEPY/1/da"><img src="http://feedads.g.doubleclick.net/~a/uveGCc14A1C5yGJebCxqEtJDEPY/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2011/08/enable-html5-video-and-audio-tag-in-all-major-browsers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2011/08/enable-html5-video-and-audio-tag-in-all-major-browsers/</feedburner:origLink></item>
	</channel>
</rss>

