<?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>Bala-Krishna &#187; Java Script</title>
	<atom:link href="http://www.bala-krishna.com/category/java-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bala-krishna.com</link>
	<description>Web Developer &#38; Internet Marketing Consultant</description>
	<lastBuildDate>Sat, 06 Mar 2010 13:07:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PNG Files Transparency Problem(Grey Color) in Internet Explorer</title>
		<link>http://www.bala-krishna.com/png-files-transparency-problemgrey-color-in-internet-explorer/</link>
		<comments>http://www.bala-krishna.com/png-files-transparency-problemgrey-color-in-internet-explorer/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 23:55:56 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Java Script]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Alpha Image Loader]]></category>
		<category><![CDATA[AlphaImageLoader]]></category>
		<category><![CDATA[PNF fix]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=480</guid>
		<description><![CDATA[Internet Explorer below 7.0 does not support 24-bit alpha channel transparent PNG images. PNG image background turn into gray color rather then transparent. IE version 7 and above completely solved this issue and fully support PNG images.?  Other modern browser such as Firefox, Opera, Flock support png images from start.
How to Fix:

Use transparent gif [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer below 7.0 does not support 24-bit alpha channel transparent PNG images. PNG image background turn into gray color rather then transparent. IE version 7 and above completely solved this issue and fully support PNG images.?  Other modern browser such as Firefox, Opera, Flock support png images from start.</p>
<p><strong>How to Fix:</strong></p>
<ul>
<li>Use transparent gif file instead of PNG file.</li>
<li>Avoid direct use of images for transparent PNG file. Use Microsoft <strong>AlphaImageLoader</strong> filter, as described below:<br />
<blockquote><p>&lt;DIV ID=&#8221;oDiv&#8221; STYLE=&#8221;position:absolute; left:140px; height:400; width:400;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(<br />
src=&#8217;image.png&#8217;, sizingMethod=&#8217;scale&#8217;);&#8221; &gt;<br />
&lt;/DIV&gt;</p></blockquote>
</li>
<li>Download pngfix javascript  <a href="http://www.bala-krishna.com/wp-content/uploads/2008/12/pngfix.zip">pngfix</a> file. Extract zip file and upload on your webserver. This .JS file uses same concept as in second point to render PNG images.</li>
<li>Include js file within &lt;head&gt;&lt;/head&gt; section like below.?  Replace &#8220;your file path&#8221; with actual file path before upload.
<pre>&lt;!--[if lt IE 7.]&gt;
&lt;script defer type="text/javascript" src="your file path/pngfix.js"&gt;&lt;/script&gt;
&lt;![endif]--&gt;n</pre>
</li>
<li>
<pre>Save the document and upload to server. This fix apply to all PNG images automatically in Internet Explorer. Other browser simply ignore this.</pre>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/png-files-transparency-problemgrey-color-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create JavaScript Confirm Box for Record Deletion</title>
		<link>http://www.bala-krishna.com/create-javascript-confirm-box-for-record-deletion/</link>
		<comments>http://www.bala-krishna.com/create-javascript-confirm-box-for-record-deletion/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 03:44:13 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Crawler]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Java Script]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Window Application]]></category>
		<category><![CDATA[confirm function]]></category>
		<category><![CDATA[delete operation]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=455</guid>
		<description><![CDATA[Confirmation before deletion of record is very useful to preserve data from accidental record deletion. With confirmation process will be in two steps. Here is the javascript way to ask user whether they want to delete record or not.
&#60;a onclick=&#8221;return confirm(&#8216;Are you sure you want to delete?&#8217;)&#8221; href=&#8221;page.page?act=delete&#38;id=1&#8243;&#62;Delete&#60;/a&#62;

You can see above example. The method is [...]]]></description>
			<content:encoded><![CDATA[<p>Confirmation before deletion of record is very useful to preserve data from accidental record deletion. With confirmation process will be in two steps. Here is the javascript way to ask user whether they want to delete record or not.</p>
<p><strong><em>&lt;a onclick=&#8221;return confirm(&#8216;Are you sure you want to delete?&#8217;)&#8221; href=&#8221;page.page?act=delete&amp;id=1&#8243;&gt;Delete&lt;/a&gt;<br />
</em></strong></p>
<p>You can see above example. The method is very easy.?  if you click OK.. then function will return true and browser navigate href URL otherwise false value will be return and your click will not work.</p>
<p>You can achieve same functionality by wraping above method in a function.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/create-javascript-confirm-box-for-record-deletion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
