<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Programming Ideas, Logics, Tips and Tricks &#187; Browser</title>
	<atom:link href="http://www.sajithmr.me/tag/browser/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.me</link>
	<description></description>
	<lastBuildDate>Sat, 07 Apr 2012 16:30:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HTML5 Audio: Browser Self Test</title>
		<link>http://www.sajithmr.me/html5-audio-browser-self-test</link>
		<comments>http://www.sajithmr.me/html5-audio-browser-self-test#comments</comments>
		<pubDate>Thu, 22 Mar 2012 21:15:26 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[andriod]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[detect]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=1101</guid>
		<description><![CDATA[Created a small html5 page today to check which audio format your browser support in HTML5. It is using a Javascript code to detect browsers audio status dynamically and show the result. I also added 5 different audio format sample using html5 audio node, and using this you can test whether any particular format is [...]]]></description>
			<content:encoded><![CDATA[<p>Created a small html5 page today to check which audio format your browser support in HTML5.</p>
<p><a href="http://www.sajithmr.me/html5/audio/" target="_blank"><img class="alignnone size-full wp-image-1105" title="button" src="http://www.sajithmr.me/wp-content/uploads/2012/03/button.png" alt="" width="244" height="39" /></a></p>
<p>It is using a Javascript code to detect browsers audio status dynamically and show the result.</p>
<p>I also added 5 different audio format sample using html5 audio node, and using this you can test whether any particular format is playing or not</p>
<p>It works for both Desktop browsers and mobile browsers.</p>
<p>Here is the URL:</p>
<p><a title="Detech HTML5 audio property of browser" href="http://www.sajithmr.me/html5/audio/" target="_blank">http://www.sajithmr.me/html5/audio/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/html5-audio-browser-self-test/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access 401 authentication with Curl</title>
		<link>http://www.sajithmr.me/access-401-authentication-with-curl</link>
		<comments>http://www.sajithmr.me/access-401-authentication-with-curl#comments</comments>
		<pubDate>Tue, 09 Nov 2010 11:28:45 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[quicktips]]></category>
		<category><![CDATA[401]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/access-401-authentication-with-curl/</guid>
		<description><![CDATA[When we implement Curl for an URL where 401 authentication is made (The pop-up for username and password when we access that url through browser), we can pass the username and password parameter along with the calling URL. For example: for your url, www.abc.com to by pass authentication in one go, we can use, http://username:password@www.abc.c [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both">When we implement Curl for an URL where 401 authentication is made (The pop-up for username and password when we access that url through browser), we can pass the username and password parameter along with the calling URL. </p>
<p style="clear: both">For example: for your url, www.abc.com to by pass authentication in one go, we can use, http://username:password@www.abc.c</p>
<p style="clear: both">The same will work with browser as well. But it is not recommended to use this way due to security concerns (Your username and password can be retrieved from browser history or some other way in this case)</p>
<p style="clear: both">But when we come to CURL, we can follow this method.</p>
<p style="clear: both">eg:</p>
<p style="clear: both">
<p style="clear: both"> $options = array(<br /> CURLOPT_RETURNTRANSFER => true, // return web page<br /> CURLOPT_HEADER => false, // return headers<br /> CURLOPT_FOLLOWLOCATION => true, // follow redirects<br /> CURLOPT_ENCODING => &#8220;&#8221;, // handle all encodings<br /> CURLOPT_USERAGENT => &#8220;spider&#8221;, // who am i<br /> CURLOPT_AUTOREFERER => true, // set referer on redirect<br /> CURLOPT_CONNECTTIMEOUT => 120, // timeout on connect<br /> CURLOPT_TIMEOUT => 60, // timeout on response<br /> CURLOPT_MAXREDIRS => 10, // stop after 10 redirects<br /> CURLOPT_SSL_VERIFYPEER => false,<br /> CURLOPT_SSL_VERIFYHOST => false<br /> );</p>
<p> $CURLREQ = curl_init(&#8216;http://username:password@abc.com&#8217;);<br /> curl_setopt($CURLREQ, CURLOPT_HTTPGET, true);</p>
<p> curl_setopt_array($CURLREQ, $options);</p>
<p> $content = curl_exec($CURLREQ);<br /> $err = curl_errno($CURLREQ);<br /> $errmsg = curl_error($CURLREQ);<br /> $header = curl_getinfo($CURLREQ);<br /> curl_close($CURLREQ);</p>
<p> echo $content;</p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/access-401-authentication-with-curl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick tips for https connection (Non secure content warning &#8211; IE)</title>
		<link>http://www.sajithmr.me/quick-tips-for-https-connection-non-secure-content-warning-ie</link>
		<comments>http://www.sajithmr.me/quick-tips-for-https-connection-non-secure-content-warning-ie#comments</comments>
		<pubDate>Mon, 17 May 2010 23:14:49 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[https warning]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[non-secure content]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[safety]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[warning]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=713</guid>
		<description><![CDATA[If you are using https pages or some of the pages (payment pages etc) in your website, keep the following in your mind. In some browsers especially IE shows warning of non-secured content in secured page. This cause user the feeling that the website is not secured. Use relative url always. Relative URL means those [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-714" title="browsers_dhtml" src="http://www.sajithmr.me/wp-content/uploads/2010/05/browsers_dhtml.jpg" alt="browsers_dhtml" width="270" height="250" /></p>
<p>If you are using https pages or some of the pages (payment pages etc) in your website, keep the following in your mind. In some browsers especially IE shows warning of non-secured content in secured page. This cause user the feeling that the website is not secured.</p>
<ol>
<li>Use relative url always. Relative URL means those without starting with http:// or https://, instead use relative url.</li>
<li>If you need to use full url, use dynamic base name in with your programming language.For example in PHP, define BASE_URL = http://www.yoursite.com and use this variable in every links and forms. Change the BASE_URL value between http and https depending upon the protocol ($_SERVER['HTTP_HOST'])</li>
<li>Check  inside javascript function whether it is calling any non-secured url. (For example, sometime you may use full url inside Javascript). Check using if condition to decide, which protocol to use, like what Google Analytic does.<br />
eg:  (&#8220;https:&#8221; == document.location.protocol) ? &#8220;https://ssl.&#8221; : &#8220;http://www.&#8221;);</li>
<li> Check if there is any flash content which tries to load data from non-secured url. There is a chance to load some xml configuration files using http protocol</li>
<li> Also change the codebase parameter value in object tag (flash or other media) whether it is pointing http or https url. There is a chance for this url in flash content.<br />
<span style="color: #ff6600;">codebase=&#8221;http://download.macromedia.com/pub/shockwave /cabs/flash/swflash.cab#version=9,0,115,0&#8243;<br />
<span style="color: #000000;">Change this url to https://downoad&#8230;<br />
</span><br />
</span></li>
<li><span style="color: #ff6600;"><span style="color: #000000;">If you are using facebook connect or such integration, check the javascript initialisation code.<br />
<span style="color: #008000;">FB.init(&#8220;78bc8ffb87c41eabb6395a2045c76021&#8243;, &#8220;/xd_receiver.htm</span>&#8220;);<br />
Inside the xd_receiver.htm file, the cross platform callback will be non secured url (http)<br />
Change this to xd_reciver_ssl.htm and use new code, which is available in Facebook documentation</p>
<p></span></span></li>
</ol>
<p>Tools like Fiddler can be used to check which url is non-secured. Firebug cannot show all non-secure connections. If the above steps do not solve your problem, try disabling javascript files one by one to point out which call is making the problem. Also try this by disabling Flash objects one by one.</p>
<p>Good luck guys</p>
<p>Cheers</p>
<p>Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/quick-tips-for-https-connection-non-secure-content-warning-ie/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Check website in different browsers</title>
		<link>http://www.sajithmr.me/check-website-in-different-browsers</link>
		<comments>http://www.sajithmr.me/check-website-in-different-browsers#comments</comments>
		<pubDate>Sun, 22 Mar 2009 01:01:28 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[alignment]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=396</guid>
		<description><![CDATA[Last day i got a good website in which we can test the rendering of a particular website through different versions of interenet explorer. From a designer&#8217;s view, internet explorer is a life long head ache due its different alignment, floating problem, iframe problem, script execution problem and all. Here , http://ipinfo.info/netrenderer/index.php , You can [...]]]></description>
			<content:encoded><![CDATA[<p>Last day i got a good website in which we can test the rendering of a particular website through different versions of interenet explorer. From a designer&#8217;s view, internet explorer is a life long head ache due its different alignment, floating problem, iframe problem, script execution problem and all.</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/03/epath-ie-comparison.jpg"><img class="alignnone size-full wp-image-398" title="epath-ie-comparison" src="http://www.sajithmr.com/wp-content/uploads/2009/03/epath-ie-comparison.jpg" alt="" width="200" height="100" /></a></p>
<p>Here , <a href="http://ipinfo.info/netrenderer/index.php" target="_blank">http://ipinfo.info/netrenderer/index.php</a> , You can check your website through different internet explorer version. It will be useful for linux developers to test the website via internet explorer.No need to boot windows operating system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/check-website-in-different-browsers/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Fun Time</title>
		<link>http://www.sajithmr.me/fun-time</link>
		<comments>http://www.sajithmr.me/fun-time#comments</comments>
		<pubDate>Tue, 04 Nov 2008 03:14:45 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[webworld]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=344</guid>
		<description><![CDATA[Hello Techies , Lets watch a fun video with your browser interactive effect. Kill me if you dont like this flash + javascript effect. Dont maximise (enlarge ) your browser window  after clicking the below link. Wait a moment  after the click. REMEMBER, DONT MAXIMIZE the window http://www.fly-a-balloon.be/ Regards Sythoos]]></description>
			<content:encoded><![CDATA[<p>Hello Techies ,</p>
<p>Lets watch a fun video with your browser interactive effect. Kill me if you dont like this flash + javascript effect.</p>
<p>Dont maximise (enlarge ) your browser window  after clicking the below link. Wait a moment  after the click.</p>
<p><strong><span style="color: #ff6600;">REMEMBER, DONT MAXIMIZE</span></strong> the window</p>
<p><a href=" http://www.fly-a-balloon.be/ " target="_blank"> http://www.fly-a-balloon.be/ </a></p>
<p>Regards</p>
<p>Sythoos</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/fun-time/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Float &#8211; Margin Problem</title>
		<link>http://www.sajithmr.me/internet-explorer-float-margin-problem</link>
		<comments>http://www.sajithmr.me/internet-explorer-float-margin-problem#comments</comments>
		<pubDate>Thu, 16 Oct 2008 14:22:10 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[margin]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[white space]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/internet-explorer-float-margin-problem/</guid>
		<description><![CDATA[If you are a web designer, who designs using css  properties, perhaps you get in struck with different browser&#8217;s compatibility. In these case Internet explorer would be your most headache, especially IE 6 or former versions . Mozilla shows contents as we expect while the design phase. The web browser arrived recently, Chrome also shows [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/10/internet-explorer-logo-with-pins.jpg" alt="Internet Explorer Float - Margin Problem" /></p>
<p>If you are a web designer, who designs using css  properties, perhaps you get in struck with different browser&#8217;s compatibility. In these case Internet explorer would be your most headache, especially IE 6 or former versions .</p>
<p><a href="http://www.sajithmr.com/why-i-like-mozilla/" title="Mozilla" target="_blank">Mozilla</a> shows contents as we expect while the design phase. The web browser arrived recently, <a href="http://www.sajithmr.com/google-chrome/" title="Google Chrome" target="_blank">Chrome</a> also shows things like what we put in our designs. When we check with Internet explorer, the veteran in this field, a lots of problems with aligns , extra white space , floating  etc.</p>
<p>I already posed about <a href="http://www.sajithmr.com/ie-internet-explorer-form-tag-problem/" title="Internet Explorer Form Tag " target="_blank">internet explorer form tag problem</a>. Here, recently i faced a different problem with IE, when we use float values say float:left for a particular div, and if we apply left-margin:10px (or whatever value), IE displays it with doubled marginal length (in this case around 20px)</p>
<p>When i googled it , and finally got a solution. What you have to do is, add <strong>display:inline </strong>value to the div which shows this extra white space or extra length</p>
<p>eg:</p>
<p><font color="#993300">#rightDiv<br />
{<br />
width:279px;<br />
height:40px;</font></p>
<p><font color="#993300">float:left;<br />
display:inline;</font></p>
<p><font color="#993300">}</font></p>
<p>I got this precious solution from <a href="http://www.positioniseverything.net/explorer/floatIndent.html" target="_blank">http://www.positioniseverything.net/explorer/floatIndent.html</a></p>
<p>If you want to get the updations in these article, enter your email address below:</p>
<form action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1221113', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">Enter your email address:&nbsp;<br />
<input type="text" style="color:#666;border:1px solid #cbcbcb;background:#fcfcfc; width:120px;"  name="email"/>
<input type="hidden" value="http://feeds.feedburner.com/~e?ffid=1221113" name="url"/>
<input type="hidden" value="Sajithmr.com" name="title"/>
<input type="hidden" name="loc" value="en_US"/>&nbsp;<br />
<input type="submit" value="Submit" /></form>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/internet-explorer-float-margin-problem/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Chrome</title>
		<link>http://www.sajithmr.me/google-chrome</link>
		<comments>http://www.sajithmr.me/google-chrome#comments</comments>
		<pubDate>Wed, 03 Sep 2008 15:22:07 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[webworld]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[chrash]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[flop]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/google-chrome/</guid>
		<description><![CDATA[10 Features of Google Chrome &#8211; Youtube Video [youtube:http://in.youtube.com/watch?v=Xlh8gSF_hhE] Yes, a browser with very simple layout. The features i like in this new browser is its full screee view. The only thing in the top area is the location bar. No other menus or buttons or panels are there. It gives a comfort feeling. (All [...]]]></description>
			<content:encoded><![CDATA[<h3>10 Features of Google Chrome &#8211; Youtube Video</h3>
<p>[youtube:http://in.youtube.com/watch?v=Xlh8gSF_hhE]</p>
<p>Yes, a browser with very simple layout. The features i like in this new browser is its full screee view. The only thing in the top area is the location bar. No other menus or buttons or panels are there. It gives a comfort feeling. (All other browsers are very congested )</p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/09/03pogue_span.jpg" alt="The Competition is started" width="467" height="202" /></p>
<p>Another feature i like to see was that task manager. I was searching for such a plugin in mozilla. Which tabs takes more memory , more internet resources etc. And we can even end the process . Good approach google. Hats off.</p>
<p>The next feature i like is downloading files. It never ask for location for saving. After download you can save as you wish (You can drag the downloaded file anywhere in your computer ). So when you want to download , just download it !!!</p>
<p>On the very first day, i got a crashed warning message from chrome while i browsing !!!</p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/09/crashed2.JPG" alt="Google Chrome Crashed" /></p>
<p>But there was option to restart, so saved  all the tabs.</p>
<p>Another feature i liked is it error display mechanism. It shows proper error and proper solution just like google style <img src='http://www.sajithmr.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/09/error.JPG" alt="Dns Error Chrome" width="525" height="183" /></p>
<p>One feature i expect was the warning before closing tabs. When i closed the browser, all the tab get closed without any warning.. I think firefox made me to think like this .</p>
<p>And in option , you can see the saved passwords (without any masking !!!) .  That is a bad feature i think.Lets expect more features in the coming update .</p>
<p>And about wordpress editor; some of the functions of WYSWUG wordpress editor is not working with chrome. I think this is because of the javascript compatibility  .</p>
<p>From a developer angle , i got one more browser to test a webpage  (How it appears after changing the html, javascript and css )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/google-chrome/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mozilla Plugin Development</title>
		<link>http://www.sajithmr.me/mozilla-plugin-development</link>
		<comments>http://www.sajithmr.me/mozilla-plugin-development#comments</comments>
		<pubDate>Tue, 19 Feb 2008 08:21:22 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[webworld]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mozilla Plugin]]></category>
		<category><![CDATA[XPI]]></category>
		<category><![CDATA[XUL]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/mozilla-plugin-development/</guid>
		<description><![CDATA[Steps to create a mozilla plugin&#62; 1) You need Mozilla Firefox Web Browser (Download from: http://www.mozilla.com/en-US/) 2) Initail steps for a Hello World program is here : http://developer.mozilla.org/en/docs/Building_an_Extension The package is zip file saved with xpi ( pronounced as zippi ). And the Interfacing language is called XUL You can edit and test your xul [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sajithmr.me/wp-content/uploads/2008/02/grandenewsmall.jpg"><img class="alignnone size-full wp-image-868" title="grandenewsmall" src="http://www.sajithmr.me/wp-content/uploads/2008/02/grandenewsmall.jpg" alt="" width="600" height="600" /></a></p>
<p><span style="color: #ff6600;"><strong>Steps to create a mozilla plugin&gt;</strong></span></p>
<p>1) You need Mozilla Firefox Web Browser   (Download from: <a href="http://www.mozilla.com/en-US/" target="_blank">http://www.mozilla.com/en-US/</a>)</p>
<p>2) Initail steps for a Hello World program is here :<a href="http://developer.mozilla.org/en/docs/Building_an_Extension" target="_blank"> http://developer.mozilla.org/en/docs/Building_an_Extension</a></p>
<p>The package is zip file saved with xpi ( pronounced as zippi ). And the Interfacing language is called XUL</p>
<p>You can edit and test your xul templating using this url: <a href="http://ted.mielczarek.org/code/mozilla/xuledit/xuledit.xul" target="_blank">http://ted.mielczarek.org/code/mozilla/xuledit/xuledit.xul</a></p>
<p>The Browser itself written in XUL format. Its basic structure is called XUL Overlay. We can override any part of that overlay with id. (See: <a href="http://ted.mielczarek.org/code/mozilla/xuledit/xuledit.xul" target="_blank">http://developer.mozilla.org/en/docs/XUL_Overlays</a>)</p>
<p>This is how different plugin&#8217;s are integrated with already existing mozilla browser. You can Override, Expand, or add separate window  for your application.</p>
<p>Since the usage of desktop application are increasing  and the need of javascript have more significant nowadays ( Ajax, Flash, Flex, Adobe Air) , We should follow client side developments.</p>
<p>If XUL is for templating , Javascript is action creator here. You can write your code in javascript.</p>
<p>After creating your application , you can showcase it on firefox extension folder. They put your code in sandbox. After testing, if it is an useful one, they will add it to their public package listing so that<br />
everybody can access you extension.</p>
<p>So start your Hello World Application with Mozilla Plugin NOW .</p>
<p>Feel  free to contact me in: admin@sajithmr.com or D@OLPH.IN</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/mozilla-plugin-development/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

