<?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>Php Development &#187; Html</title>
	<atom:link href="http://www.maheshchari.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maheshchari.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 23 May 2010 05:10:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ie css hack reference</title>
		<link>http://www.maheshchari.com/ie-css-hack-reference/</link>
		<comments>http://www.maheshchari.com/ie-css-hack-reference/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 04:07:24 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=381</guid>
		<description><![CDATA[CSS difference Between IE6,IE7,IE8
As a designer we experience the most bizzare conditions with internet explerer because it doesn&#8217;t follow w3 standereds mostly while rendering elemets and Box Model where moslty other Gecko browsers follow same.Even i am very good at programming ,i experience difficult to find IE issues,wasted more time on CSS issues than programming.So [...]]]></description>
			<content:encoded><![CDATA[<h2>CSS difference Between IE6,IE7,IE8</h2>
<p>As a designer we experience the most bizzare conditions with internet explerer because it doesn&#8217;t follow w3 standereds mostly while rendering elemets and Box Model where moslty other Gecko browsers follow same.Even i am very good at programming ,i experience difficult to find IE issues,wasted more time on CSS issues than programming.So i came up with reference for IE and instructions how to handle them to keep in mind reference for me (us).Even there is difference between IE versions also.So below is the reference </p>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="18%" align="center"><strong>Selector Type </strong></td>
<td align="center"><strong>Examples &amp; description </strong></td>
<td width="8%" align="center"><strong>IE6</strong></td>
<td width="6%" align="center"><strong>IE7</strong></td>
<td width="7%" align="center"><strong>IE8</strong></td>
</tr>
<tr>
<td><strong>Child Selectors: </strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">body&amp;gt;p,ul&amp;gt;li</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Chained Classes</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">	.class1 .class2 .class3,
	or like class=&quot; class1 class2 class3&quot;</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Attribute Selectors</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">a[href=xyx],input[type=radio]</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Adjacent Sibling Selectors</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">h1+p,li+ul,ul+li</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>General Sibling Selectors</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">h1~p,li~ul,ul~li</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Pseudo-Classes and Pseudo-Elements</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">a:hover span ,li:first p</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Chained Pseudo-Classes</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">a:first-child:hover ,  a:active:hover</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>:hover on Non-Anchor Elements</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">p:hover</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>:first-child Pseudo-Class</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">div li:first-child</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>:focus Pseudo-Class</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">a:focus</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>:before and :after Pseudo-Elements</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">.class:before,.class:after</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Min-Height &amp; Min-Width</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">#box {  max-height: 500px;  min-width: 300px;  }</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Transparent Border Color</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">#box {  	border: solid 1px transparent;  }</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Fixed-Position Elements</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">#box {  	position: fixed;  }</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>inherit</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">#box {  	display: inherit;  }</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Border Spacing on Table Cells</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">table td {  	border-spacing: 3px;  }</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Vertical Position of a Table Caption</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">table {  	caption-side: bottom;  }</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Clipping Regions</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">#box {  	rect(20px, 300px, 200px, 100px)  }</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Alternative Values for the Display Property</strong></td>
<td>display property values other than block,none,inline,inline-block. </td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Handling of Collapsible Whitespace</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">	p { 	white-space: pre-line;  }  
	div { 	white-space: pre-wrap;  }</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>@import</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">@import url(&quot;styles.css&quot;;) screen;</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>Quote Characters for Generated Content</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">	q {quotes: &quot;'&quot; &quot;'&quot;; } 
	q:before {content: open-quote;} 
	q:after {content: close-quote; }</pre></div></div>

</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td><strong>!important</strong></td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">ul {margin-left:0 !important}</pre></div></div>

</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<h2>Handling Issues</h2>
<p>In the most cases IE6 doesn&#8217;t support all selector types to other IE7,IE8.</p>
<p>Even though IE7,IE8 both support much same selectors,they have difference in box model and rendering elements.  </p>
<p>In the case of IE7 it just need to add special IE7 css fix style like below </p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!--[if IE]&gt; &lt;link href=&quot;ie_only.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; &lt;![endif]--&gt;
		&lt;!--[if lt IE 7]&gt; &lt;link href=&quot;ie_6_and_below.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; &lt;![endif]--&gt;
		&lt;!--[if !lt IE 7]&gt;&lt;![IGNORE[--&gt;&lt;![IGNORE[]]&gt; &lt;link href=&quot;recent.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; &lt;!--&lt;![endif]--&gt;
		&lt;!--[if !IE]&gt;--&gt; &lt;link href=&quot;not_ie.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt; &lt;!--&lt;![endif]--&gt;</pre></div></div>

<p> in the case IE6,we can&#8217;t handle totally with seperate CSS file fix like above example,it needs some layout tweaks also. </p>
<p>We can show elements with conditions as below specified. </p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;![if!IE]&gt;
This shows up in anything but IE
&lt;![endif]&gt;</pre></div></div>

<p>It is better to avoid special characters in selecter name like &quot;_&quot;,&quot;-&quot;,even they support mostly browsers. </p>
<h2>Hadling CSS fixes with special selectors</h2>
<p>Only IE6 and below <br />
* html {}</p>
<p>IE7 and below</p>
<p>*:first-child+html {} * html {}</p>
<p>IE7 only</p>
<p>*:first-child+html {}</p>
<p>IE7 and Modern Browsers only<br />
html&gt;body {}</p>
<p>Recent Opera versions 9 and below</p>
<p>html:first-child {}</p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=381&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/ie-css-hack-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>favico tutorial</title>
		<link>http://www.maheshchari.com/favico-tutorial/</link>
		<comments>http://www.maheshchari.com/favico-tutorial/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 12:28:16 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[favico]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=374</guid>
		<description><![CDATA[How to Add fav icon to your web site
What is fav icon?  
a favicon is really nothing more than a tiny png image with a .ico extension and sized to 16x 16 or 32 x 32.  
How to create fav icon?  
So, the first thing you need to do is to create [...]]]></description>
			<content:encoded><![CDATA[<h1>How to Add fav icon to your web site</h1>
<h3>What is fav icon?  </h3>
<p>a favicon is really nothing more than a tiny png image with a <strong>.ico </strong>extension and sized to <strong>16x 16 </strong>or <strong>32 x 32</strong>.  </p>
<h3>How to create fav icon?  </h3>
<p>So, the first thing you need to do is to create the image that you want to use; whatever you use, don’t make it too complex because small detail tend to get lost when re sized to a tiny 16 by 16 pixels.Create a image that sized square model image.then you should re size to 16&#215;16 px or 32&#215;32px.here we can use photoshop , corel draw and gimp ..etc.before saving the image just add extension ico,instead of regular images gif,png,jpg.  </p>
<h3>Why should i give ico extension name?</h3>
<p> Mostly <strong>modern </strong>browsers supports any format of image,but it must compatibly with older browsers also.you can give regular formats like favicon.gif,favicon.png,favicon.jpg also.  </p>
<h3>Where should i keep this icon on server?</h3>
<p> Moslty browser search for favicon in root folder,so if you keep this icon on root directory like ,<strong>www ,public_html </strong>directory on <strong>server</strong>.<br />
  you can keep this icon not only root directory ,its your choice.if so you have to<strong> add small html code shwon below</strong> in header of each page of site. It works on your local server also.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">  	&lt;head&gt;
	&lt;link rel=&quot;shortcut icon&quot; href=&quot;favicon.ico&quot; &gt;
	&lt;/head&gt;</pre></td></tr></table></div>

<h3>Adding GIF images as favicon</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">  	&lt;head&gt;
	&lt;link rel=&quot;shortcut icon&quot; href=&quot;favicon.ico&quot; &gt;
	&lt;link rel=&quot;icon&quot; href=&quot;animated_favicon.gif&quot; type=&quot;image/gif&quot; &gt;
	&lt;/head&gt;</pre></td></tr></table></div>

<p>
 in the above code we use two type of favicons . <strong>favicon.ico</strong> for old browsers don&#8217;t support gif images.<br />
 <strong>animated_favicon.gif </strong>is for modern browser supports. </p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=374&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/favico-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>hide javascript code from non javascript browser</title>
		<link>http://www.maheshchari.com/hide-javascript-code-from-non-javascript-browser/</link>
		<comments>http://www.maheshchari.com/hide-javascript-code-from-non-javascript-browser/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 03:14:42 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[browser]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=368</guid>
		<description><![CDATA[hide JavaScript code from non-JavaScript  browsers
Here we learn how to hide the javascript code from non javascript browsers , javascript disabled browsers and mobile browsers .Non javascript browsers renders the javascript code as generel text without exucuting the code. So we must aware how to hide the javascript from these browsers.
&#160; 

1
2
3
4
5
&#60;script type=&#34;text/javascript&#34;&#62;
&#60;!--
alert&#40;&#34;This alert [...]]]></description>
			<content:encoded><![CDATA[<h1>hide JavaScript code from non-JavaScript  browsers</h1>
<p>Here we learn how to hide the javascript code from non javascript browsers , javascript disabled browsers and mobile browsers .Non javascript browsers renders the javascript code as generel text without exucuting the code. So we must aware how to hide the javascript from these browsers.</p>
<p>&nbsp; </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;This alert box is hidden from non javascript browsers.!!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//--&gt;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=368&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/hide-javascript-code-from-non-javascript-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>check javascript disabled</title>
		<link>http://www.maheshchari.com/check-javascript-disabled/</link>
		<comments>http://www.maheshchari.com/check-javascript-disabled/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 03:09:42 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[browser]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=326</guid>
		<description><![CDATA[Check Browser Javascript enabled
JavaScript is a small, lightweight, object-oriented, cross-platform scripting language.JavaScript is used in millions of Web pages to add functionality, validate forms, detect browsers, and much more.With some reasons the web browser don&#8217;t support Javascript ,like user intentially disables,some  mobile browsers  version don&#8217;t support.Then it must we check the whether user&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<h1>Check Browser Javascript enabled</h1>
<p><strong>JavaScript</strong> is a small, lightweight, object-oriented, cross-platform scripting language.JavaScript is used in millions of Web pages to add functionality, validate forms, detect browsers, and much more.With some reasons the web browser don&#8217;t support <strong>Javascript</strong> ,like user<strong> intentially disables</strong>,some  <strong>mobile browsers</strong>  version don&#8217;t support.Then it must we check the whether user&#8217;s web browser has Javascript enabled.Here we discuss how to <strong>handle non Javascript browser</strong>.</p>
<p>We show a alert ,<strong>warning message</strong> if user browser don&#8217;t hav Javascript enabled.using <strong>&lt;noscript&gt;</strong> HTML tag. just add bellow code to any where in the <strong>body </strong>section.<strong>&lt;noscript&gt;</strong> element will be rendered by those <strong>Javascript disabled</strong> browsers. </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;noscript&gt;&lt;font face=arial&gt;JavaScript must be enabled in order for you to use maheshchari.com in standard view. However, it seems JavaScript is either disabled or not supported by your browser. To use standard view, enable JavaScript by changing your browser options, then &lt;a href=&quot;&quot;&gt;try again&lt;/a&gt;. &lt;/font&gt;&lt;/noscript&gt;</pre></td></tr></table></div>

<p>We show a alert ,warning message with Javascript itself if user browser <strong>doesn&#8217;t support &lt;noscript&gt;</strong> HTML tag.below example code demonstrates.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;nojs&quot;&gt;&lt;font face=arial&gt;JavaScript must be enabled in order for you to use maheshchari.com in standard view. However, it seems JavaScript is either disabled or not supported by your browser. To use standard view, enable JavaScript by changing your browser options, then &lt;a href=&quot;&quot;&gt;try again&lt;/a&gt;.&lt;/font&gt;&lt;/div&gt;
&lt;script&gt;
//if script enabled warning message hidden.
document.getElementById('nojs').style.display=&quot;none&quot;;
&lt;/script&gt;</pre></td></tr></table></div>

<p>&nbsp;</p>
<p>We create <strong>seperate UI</strong> or <strong>seperate web site</strong> for those <strong>Javascript disabled</strong> browsers. below example redirects the user automatically if <strong>Javascript disabled.</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&lt;noscript&gt;
&lt;meta http-equiv=&quot;refresh&quot; content=&quot;0;URL=http://mobile.maheshchari.com&quot; /&gt;
&lt;/noscript&gt;
&lt;/head&gt;
&lt;body&gt;&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<p>&nbsp; </p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=326&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/check-javascript-disabled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>absolute vs relative path</title>
		<link>http://www.maheshchari.com/absolute-vs-relative-path/</link>
		<comments>http://www.maheshchari.com/absolute-vs-relative-path/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 04:28:27 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=311</guid>
		<description><![CDATA[Absolute vs Relative file paths
In this article,we observe the importence of absolute and relative file path of internet files that are placed in own domains or other domains. html document can be rendered atleast a document file. these files are linked to a document like CSS,Javascript,images,flash files.A path basically tells  a web browser, where [...]]]></description>
			<content:encoded><![CDATA[<h1>Absolute vs Relative file paths</h1>
<p>In this article,we observe the importence of absolute and relative file path of internet files that are placed in own domains or other domains. html document can be rendered atleast a document file. these files are linked to a document like CSS,Javascript,images,flash files.A path basically tells  a web browser, where another file is located. </p>
<h3>Types of paths</h3>
<ul>
<li>Absolute path</li>
<li>Site root relative path</li>
<li>Document relative path</li>
</ul>
<h3>Absolute Path</h3>
<p>These are <strong>absolute server paths</strong>, they are relative in regards to your http document directory.generelly we place them with URL of the site.main advantages of these absolute path are we can manipulate the dynamicall genereated MIM types,that results in caching the assets,avoiding the caches.we can move document in site directory where ever. we can refer regard less of the sites. </p>
<p>Examples:-</p>
<p>image</p>
<p>&lt;img src=&quot;http://www.maheshchari.com/images/image.jpg&quot; width=&quot;120&quot; height=&quot;110&quot; /&gt; </p>
<p>javascript source file</p>
<p>&lt;script src=&quot;http://www.maheshchari.com/images/javascriptsrcfile.js&quot; type=&quot;text/javascript&quot; &gt;&lt;/script&gt; </p>
<p>CSS file</p>
<p>&lt;link href=&quot;http://www.maheshchari.com/images/style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;</p>
<p>&nbsp;</p>
<h3>Site root relative path  </h3>
<p>These are <strong>semi absolute paths</strong>, in the main absolute path from above examples we replace  <strong>http://www.maheshchari.com/images/</strong> with just <strong>/ </strong>.but these assets can be accesed to single working domain only. </p>
<p>Examples:-</p>
<p>image</p>
<p>&lt;img src=&quot;/images/image.jpg&quot; width=&quot;120&quot; height=&quot;110&quot; /&gt; </p>
<p>javascript source file</p>
<p>&lt;script src=&quot;/images/javascriptsrcfile.js&quot; type=&quot;text/javascript&quot; &gt;&lt;/script&gt; </p>
<p>CSS file</p>
<p>&lt;link href=&quot;/images/style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;</p>
<h3>Document relative path</h3>
<p>these are document relative path,assuming present working document in site root directory.below examples works.main disadvantage of these document relative path,if we move the present working document </p>
<p>Examples:-</p>
<p>image</p>
<p>&lt;img src=&quot;images/image.jpg&quot; width=&quot;120&quot; height=&quot;110&quot; /&gt; </p>
<p>javascript source file</p>
<p>&lt;script src=&quot;images/javascriptsrcfile.js&quot; type=&quot;text/javascript&quot; &gt;&lt;/script&gt; </p>
<p>CSS file</p>
<p>&lt;link href=&quot;images/style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;</p>
<p>&nbsp;</p>
<p>if present document moved in to one deeper directory.</p>
<p>Examples:</p>
<p>&lt;img src=&quot;../images/image.jpg&quot; width=&quot;120&quot; height=&quot;110&quot; /&gt; </p>
</p>
<p>&nbsp; </p>
<p>&nbsp;  </p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=311&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/absolute-vs-relative-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css image rollover</title>
		<link>http://www.maheshchari.com/css-image-rollover/</link>
		<comments>http://www.maheshchari.com/css-image-rollover/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 17:25:05 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[PHP/mysql]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=210</guid>
		<description><![CDATA[image rollover effect with css background image 
Here we use basic css back ground image  to get rollover effect.the logic is simple and we can find it in comments in script itself.

we create a empty link 
 set back ground as test1.jpg and display to block and height and width to 150px. 
build a [...]]]></description>
			<content:encoded><![CDATA[<h1>image rollover effect with css background image </h1>
<p>Here we use basic css back ground image  to get rollover effect.the logic is simple and we can find it in comments in script itself.</p>
<ul>
<li>we create a empty link </li>
<li> set back ground as test1.jpg and display to block and height and width to 150px. </li>
<li>build a suido selctor hover to link and set back ground image to test2.jpg </li>
<li>this works even javascript disabled browsers also </li>
</ul>
<h3>Download Script</h3>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/image-rollover-css.zip'>image-rollover-css</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;image rollover with css&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
#imagerollover a {
	background-image: url(test2.JPG);
	display: block;
	background-repeat: no-repeat;
	height: 150px;
	width: 150px;
}
#imagerollover a:hover{
	background-image: url(test1.JPG);
}
--&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;imagerollover&quot;&gt;&lt;a href=&quot;#test&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<h3>Download Script</h3>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/image-rollover-css.zip'>image-rollover-css</a></p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=210&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/css-image-rollover/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>javascript image rollover</title>
		<link>http://www.maheshchari.com/javascript-image-rollover/</link>
		<comments>http://www.maheshchari.com/javascript-image-rollover/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 17:00:25 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=206</guid>
		<description><![CDATA[image rollover effect with javascript image object

we create a image object with new Image();
 set a source attribute to test1.jpg.
create onmouseover even function ,then set image object src to test2.jpg
create onmouseout event function,then set image object src to test1.jpg
to test click even we can see a small alert box.   

Download Sorce Code
image-rollover-javascript

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Image Roll [...]]]></description>
			<content:encoded><![CDATA[<h1>image rollover effect with javascript image object</h1>
<ul>
<li>we create a image object with new Image();</li>
<li> set a source attribute to test1.jpg.</li>
<li>create onmouseover even function ,then set image object src to test2.jpg</li>
<li>create onmouseout event function,then set image object src to test1.jpg</li>
<li>to test click even we can see a small alert box.   </li>
</ul>
<h3>Download Sorce Code</h3>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/image-rollover-javascript.zip'>image-rollover-javascript</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Image Roll over&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;imagerolover&quot;&gt;&lt;/div&gt;
&lt;script&gt;
var myimage=new Image(); //create a image object
myimage.src=&quot;test1.jpg&quot;;//initially set test1.jpg as src attribute
//onmouseover set test2.jpg as src
myimage.onmouseover=function(){
this.src=&quot;test2.jpg&quot;;
}
//on mouseout set test1.jpg src again
myimage.onmouseout=function(){
this.src=&quot;test1.jpg&quot;;
}
//create click event 
myimage.onclick=function(){
alert('U clicked me');
}
//get imagerolover div element by id and append the image
document.getElementById('imagerolover').appendChild(myimage);
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<h3>Download Sorce Code</h3>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/image-rollover-javascript.zip'>image-rollover-javascript</a></p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=206&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/javascript-image-rollover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css opacity tutorial</title>
		<link>http://www.maheshchari.com/css-opacity-tutorial/</link>
		<comments>http://www.maheshchari.com/css-opacity-tutorial/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 13:23:40 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[opacity]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=174</guid>
		<description><![CDATA[tutorial for Cross Browser Compatible CSS opacity
At earlier stage of CSS the opacity property of element is big issue to make compatible with all browsers.but now CSS3 almost modern browsers support this property.Even though it takes time to rule  CSS3 the web world.Here we see example.
Download Source Code
css-opacity-source code-example
CSS Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.toggleopacity img &#123;
	filter:alpha&#40;opacity=50&#41;; 
	-moz-opacity:0.5;
	opacity:0.5;
	border-top-style: none;
	border-right-style: [...]]]></description>
			<content:encoded><![CDATA[<h1>tutorial for Cross Browser Compatible CSS opacity</h1>
<p>At earlier stage of CSS the opacity property of element is big issue to make compatible with all browsers.but now CSS3 almost modern browsers support this property.Even though it takes time to rule  CSS3 the web world.Here we see example.</p>
<h2>Download Source Code</h2>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/css-opacity-tutorial-example.rar'>css-opacity-source code-example</a></p>
<h2>CSS Code</h2>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.toggleopacity</span> img <span style="color: #00AA00;">&#123;</span>
	filter<span style="color: #00AA00;">:</span>alpha<span style="color: #00AA00;">&#40;</span>opacity<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">50</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> 
	-moz-opacity<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0.5</span><span style="color: #00AA00;">;</span>
	opacity<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0.5</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-top-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-right-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-bottom-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-left-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.toggleopacity</span><span style="color: #3333ff;">:hover </span>img <span style="color: #00AA00;">&#123;</span>
	filter<span style="color: #00AA00;">:</span>alpha<span style="color: #00AA00;">&#40;</span>opacity<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">100</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	-moz-opacity<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span>
	opacity<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<h2>HTML Code</h2>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html &gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt;
&lt;title&gt;CSS opacity tutorials and example&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;a href=&quot;#yourlink&quot; class=&quot;toggleopacity&quot;&gt; &lt;img src=&quot;round.jpg&quot; alt=&quot;My round&quot; width=&quot;32&quot; height=&quot;32&quot; /&gt; &lt;/a&gt; &lt;a href=&quot;#yourlink&quot; class=&quot;toggleopacity&quot;&gt; &lt;img src=&quot;round.jpg&quot; alt=&quot;My round&quot; width=&quot;32&quot; height=&quot;32&quot; /&gt; &lt;/a&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<h3>Setting Opacity of element with Javascript</h3>
<p>Below Javascript function set the element opacity to at desired level for given element.<br />
if opacity is 0 specified ,it hides the element as there no need to display the element further.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> changeOpac<span style="color: #009900;">&#40;</span>opacity<span style="color: #339933;">,</span> id<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #003366; font-weight: bold;">var</span> object <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">style</span><span style="color: #339933;">;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>opacity <span style="color: #339933;">==</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span> object.<span style="color: #660066;">display</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'none'</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
	<span style="color: #000066; font-weight: bold;">else</span>
	<span style="color: #009900;">&#123;</span> object.<span style="color: #660066;">display</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'block'</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
	object.<span style="color: #660066;">opacity</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>opacity <span style="color: #339933;">/</span> <span style="color: #CC0000;">100</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	object.<span style="color: #660066;">MozOpacity</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>opacity <span style="color: #339933;">/</span> <span style="color: #CC0000;">100</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	object.<span style="color: #660066;">KhtmlOpacity</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>opacity <span style="color: #339933;">/</span> <span style="color: #CC0000;">100</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	object.<span style="color: #660066;">filter</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;alpha(opacity=&quot;</span> <span style="color: #339933;">+</span> opacity <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;)&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h2>Download Source Code</h2>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/css-opacity-tutorial-example.rar'>css-opacity-source code-example</a></p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=174&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/css-opacity-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>round corners with css sprites</title>
		<link>http://www.maheshchari.com/round-corners-with-css-sprites/</link>
		<comments>http://www.maheshchari.com/round-corners-with-css-sprites/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 12:18:00 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=158</guid>
		<description><![CDATA[round corners with css sprites
We know that all modern web browsers supports rounded corner elements but it doesn&#8217;t work in IE6.we know that all majority users are IE6 after the fire fox in organizations.here we use CSS sprites technique ,we already discussed about the advantage of the CSS sprites in my previous post.

Steps
Download Script/Source Code
here [...]]]></description>
			<content:encoded><![CDATA[<h1>round corners with css sprites</h1>
<p>We know that all modern web browsers supports <strong>rounded corner</strong> elements but it doesn&#8217;t work in IE6.we know that all majority users are IE6 after the fire fox in organizations.here we use <strong>CSS sprites</strong> technique ,we already discussed about the advantage of the <strong>CSS sprites</strong> in my previous <a href="http://www.maheshchari.com/css-sprites-image-preloding/">post</a>.</p>
<p><a href="http://www.maheshchari.com/wp-content/uploads/2009/06/css-sprite-rounded-corner-example.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/06/css-sprite-rounded-corner-example.jpg" alt="css-sprite-rounded-corner-example" title="css-sprite-rounded-corner-example" width="250" height="122" class="alignnone size-full wp-image-162" /></a></p>
<p><h3>Steps</h3>
<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/round-corners-maheshcharicom.rar'>Download Script/Source Code</a><br />
here we make the 16degrees rounded corners.for that we use 32&#215;32px(twice the corner size) circle image as shown below.<br />
<a href="http://www.maheshchari.com/wp-content/uploads/2009/06/round.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/06/round.jpg" alt="example image with 32x32px size" title="example image with 32x32px size" width="32" height="32" class="alignnone size-full wp-image-159" /></a><br />
we create four <strong>corner </strong>divs in a container divs and place them at every corner and with a given image is back ground.<br />
Below example is self explanatory with comments in it.
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt;
&lt;title&gt;Round Corners With CSS&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
.roundeddiv { 
	width: 400px;
	position: relative;
	background-color: #006702;
	padding: 0px;
	display: block;
}
&lt;!-- Here we use on class common for all corners that shares commen properties--&gt;
.corner {
	background-image: url(round.jpg);
	position: absolute;
	height: 16px;
	width: 16px;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 1;
	margin: 0px;
	padding: 0px;
}
h3 {
	margin: 0px;
	padding: 0px;
}
&nbsp;
.container {
	position: relative;
	padding: 16px;
}
&lt;!-- we come from top right as anti clock wise --&gt;
&lt;!-- Top Right Corner  --&gt;
.tr {
	top: 0px;
	right: 0px;
	background-position: -16px 0px;
}
&lt;!--Bottom Right Corner --&gt;
.br {
	right: 0px;
	bottom: 0px;
	background-position: -16px -16px;
}
&nbsp;
&lt;!--Bottom Left Corner --&gt;
.bl {
	left: 0px;
	bottom: 0px;
	background-position: 0px -16px;
}
&lt;!--Top Left Corner --&gt;
.tl {
	background-position: 0px 0px;
	left: 0px;
	top: 0px;
}
&nbsp;
--&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;roundeddiv&quot;&gt;
&lt;!-- start corner divs --&gt;
  &lt;div class=&quot;corner tr&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;corner bl&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;corner br&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;corner tl&quot;&gt;&lt;/div&gt;
&lt;!-- end corner divs --&gt;
&lt;!-- start content --&gt;
  &lt;div class=&quot;container&quot;&gt;
    &lt;h3&gt;Rounded Corners Example &lt;/h3&gt;
    &lt;h3&gt;Rounded Corners with CSS sprites Tutorials. &lt;/h3&gt;
  &lt;/div&gt;
&lt;!-- end content --&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<p><a href='http://www.maheshchari.com/wp-content/uploads/2009/06/round-corners-maheshcharicom.rar'>Download Script/Source Code</a></p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=158&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/round-corners-with-css-sprites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hack password</title>
		<link>http://www.maheshchari.com/hack-password/</link>
		<comments>http://www.maheshchari.com/hack-password/#comments</comments>
		<pubDate>Wed, 27 May 2009 11:38:41 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=128</guid>
		<description><![CDATA[how to hack stored passwords in web browser for websites.
&#160;
Yes ,you can hack any stored password in any browser ,any web site with in five seconds.Even you don&#8217;t know any basic programming language.but it works for only stored passwords in browser only. 
  
hack stored password for Orkut ,Gmail and Google Account 
Open the [...]]]></description>
			<content:encoded><![CDATA[<h1>how to hack stored passwords in web browser for websites.</h1>
<p>&nbsp;</p>
<p>Yes ,you can <strong>hack</strong> any stored <strong>password</strong> in any browser ,any web site with in five seconds.Even you don&#8217;t know any<strong> basic programming language</strong>.but it works for only stored <strong>passwords</strong> in browser only. </p>
<p>  <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut.jpg" alt="Gmail ,Orkut Account before hack" title="Gmail ,Orkut Account before hack" width="150" height="144" class="alignleft size-full wp-image-129" /></a><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut-hacked-password.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut-hacked-password.jpg" alt="Orkut,Gmail forma after hack" title="Orkut,Gmail forma after hack" width="150" height="144" class="alignleft size-full wp-image-130" /></a></p>
<h3>hack stored password for Orkut ,Gmail and Google Account </h3>
<p>Open the login page of the orkut that stored ,then paste the below code in URL bar or Address bar,simple you can see the password</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Passwd'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">type</span><span style="color: #339933;">=</span><span style="color: #3366CC;">'text'</span><span style="color: #339933;">;</span>void<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3>hack stored password for Yahoo mail</h3>
<p><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo.jpg" alt="yahoo mail hack" title="yahoo mail hack" width="150" height="144" class="alignnone size-full wp-image-132" /></a><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo-password-hack.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo-password-hack.jpg" alt="yahoo mail password hack" title="yahoo mail password hack" width="150" height="144" class="alignleft size-full wp-image-133" /></a></p>
<p>Open the login page of the yahoo  that stored ,then paste the below code in URL bar or Address bar,simple you can see the password
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'passwd'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">type</span><span style="color: #339933;">=</span><span style="color: #3366CC;">'text'</span><span style="color: #339933;">;</span>void<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3>hack any web site password</h3>
<p>Yes ,again it is true you can hack any sites password,simple follow the below steps.<br />
  1.open login page of any web site that stored .<br />
  <div id="attachment_135" class="wp-caption alignleft" style="width: 160px"><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack-150x49.jpg" alt="open login page of any site that stored" title="password-hack" width="150" height="49" class="size-thumbnail wp-image-135" /></a><p class="wp-caption-text">open login page of any site that stored</p></div></p>
<p>2.Open context menu by right clicking on the page,then select <strong>view source</strong> from that you can see a new window that has code,search for<br />
  a word <strong>type=&#8221;password&#8221;</strong> ,beside you can find <strong>id</strong> also <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack-source-code.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack-source-code-300x13.jpg" alt="password-hack-source-code" title="password-hack-source-code" width="300" height="13" class="alignleft size-medium wp-image-136" /></a><br />
  <br/><br />
  then replace with password with that id<br />
paste it in address bar of the browser,then press enter or return key on your key board. <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/browser-password-hack.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/browser-password-hack-300x17.jpg" alt="browser-password-hack" title="browser-password-hack" width="300" height="17" class="alignleft size-medium wp-image-137" /></a> </p>
<p>3.Its done you can see hidden password <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hacked-any-site.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hacked-any-site-300x23.jpg" alt="password-hacked-any-site" title="password-hacked-any-site" width="300" height="23" class="alignleft size-medium wp-image-138" /></a><br />
  <br/>
</p>
<h3>Please note this article is informative purpose only.!!!</h3>
<h3>So don&#8217;t store your passwords on any public computer.</h3>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=128&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/hack-password/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
