<?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>Tutorials, Scripts, Technology and Interview Tips &#187; JavaScripts</title>
	<atom:link href="http://mistonline.in/wp/technology/javascripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://mistonline.in/wp</link>
	<description>The One Stop Reference For Web Developers</description>
	<lastBuildDate>Tue, 24 Jan 2012 13:59:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Load webpage dynamically from query string using simple javascript and iframe</title>
		<link>http://mistonline.in/wp/load-webpage-dynamically-from-query-string-using-simple-javascript-and-iframe/</link>
		<comments>http://mistonline.in/wp/load-webpage-dynamically-from-query-string-using-simple-javascript-and-iframe/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 17:16:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1600</guid>
		<description><![CDATA[Load webpage dynamically from uri or query string using simple javascript and iframe, this is very simple and easy to approach. Here is the javascript. window.onload = function setIframe() { var url = window.location.href; var uri = url.indexOf(&#34;?uri=&#34;); if( uri&#62;-1 ) { url = url.substr(uri+5); document.getElementById(&#34;load_me&#34;).src = url; } } and here grab the HTML [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/load-webpage-dynamically-from-query-string-using-simple-javascript-and-iframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agree Before Entry Using Javascript</title>
		<link>http://mistonline.in/wp/agree-before-entry-using-javascript/</link>
		<comments>http://mistonline.in/wp/agree-before-entry-using-javascript/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 16:15:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1549</guid>
		<description><![CDATA[Agree before entry using Javascript,with button disable functionality,that means if you agree, you can enter your name. But, if you disagree, you will not be able to enter or edit your name. When you disagree, the box is &#8216;locked.&#8217; Useful if you require your visitors to accept a disclaimer before downloading software or visiting a [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/agree-before-entry-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find screen resolution and redirect the user using javascript</title>
		<link>http://mistonline.in/wp/find-screen-resolution-and-redirect-the-user-using-javascript/</link>
		<comments>http://mistonline.in/wp/find-screen-resolution-and-redirect-the-user-using-javascript/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 20:09:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1545</guid>
		<description><![CDATA[This script helps you to find screen resolution of a client or user and redirect to a webpage using simple &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; function resolution_finder() { var url640x480 = &#34;http://www.yahoo.com&#34;; var url800x600 = &#34;http://www.googl.com&#34;; var url1024x768 = &#34;http://www.msn.com&#34;; if ((screen.width == 640) &#38;&#38; (screen.height == 480)) window.location.href= url640x480; else if ((screen.width == 800) &#38;&#38; (screen.height == [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-screen-resolution-and-redirect-the-user-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Character Encoder And Decoder Using Javascript</title>
		<link>http://mistonline.in/wp/character-encoder-using-javascript/</link>
		<comments>http://mistonline.in/wp/character-encoder-using-javascript/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 20:03:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1541</guid>
		<description><![CDATA[This scripts encodes and decodes the character entered inside the textbox. Very useful for GET queries passed through URL.Encrypts a string by converting each character to it&#8217;s ASCII key code. Supports two-way encryption &#8211; from a string to the numeric code, or from the numeric code back to the string. &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; var str_in; var [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/character-encoder-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make sure your webpage is not included in other website frames</title>
		<link>http://mistonline.in/wp/how-to-make-sure-your-webpage-is-not-included-in-other-website-frames/</link>
		<comments>http://mistonline.in/wp/how-to-make-sure-your-webpage-is-not-included-in-other-website-frames/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 20:33:22 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=626</guid>
		<description><![CDATA[Want to make sure your web pages are not included in other website frames? Well use this break_out_frame code to stop the madness. Place the following code in the header &#60;script language=”JavaScript” type=”text/javascript”&#62; &#60;!– function jump_out_frames() { if (top.location != location) { top.location.href = document.location.href ; } } –&#62; &#60;/script&#62; I would prefer to place [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/how-to-make-sure-your-webpage-is-not-included-in-other-website-frames/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Words Validation with Javascript</title>
		<link>http://mistonline.in/wp/words-validation-with-javascript/</link>
		<comments>http://mistonline.in/wp/words-validation-with-javascript/#comments</comments>
		<pubDate>Sat, 21 May 2011 20:33:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=308</guid>
		<description><![CDATA[Hi today i will explain you how to filter out inappropriate words from being updated or send from your website.This is simple javascript. badwords.js Contains javascript code. If you want add some more words in bad_words_array var bad_words_array=new Array("badword-1","badword-2","badword-3"); function badwords(txt) { var alert_arr=new Array; var alert_count=0; var compare_text=txt; for(var i=0; i&#60;bad_words_array.length; i++&#62;) { for(var [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/words-validation-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding The Size Of Images Using Javascript</title>
		<link>http://mistonline.in/wp/finding-the-size-of-images-using-javascript/</link>
		<comments>http://mistonline.in/wp/finding-the-size-of-images-using-javascript/#comments</comments>
		<pubDate>Fri, 13 May 2011 20:33:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=35</guid>
		<description><![CDATA[If you know some javascript and some HTML then you can go forward&#8230;.Those who need explanations plz feel free to contact me &#60;script language=&#34;JavaScript&#34;&#62; function getImgSize(imgSrc) {var newImg = new Image(); newImg.src = imgSrc; var height = newImg.height; var width = newImg.width; alert ('The image size is '+width+'*'+height); }&#60;/script&#62; &#60;img src=&#34;1.jpg&#34; id=&#34;demoImg&#34; /&#62; &#60;button onclick=&#34;getImgSize(document.getElementById('demoImg').src);&#34; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/finding-the-size-of-images-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOM elements dynamically using our JAVASCRIPT</title>
		<link>http://mistonline.in/wp/dom-elements-dynamically-using-our-javascript/</link>
		<comments>http://mistonline.in/wp/dom-elements-dynamically-using-our-javascript/#comments</comments>
		<pubDate>Wed, 11 May 2011 20:33:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=20</guid>
		<description><![CDATA[DOM elements Dynamically using our JAVASCRIPT JAVASCRIPT function AddItem() { // Create an Option object var opt = document.createElement(&#8216;option&#8217;); // Add an Option object to Drop Down/List Box document.getElementById(&#8220;DropDownList&#8221;).options.add(opt); var Text =prompt(&#8220;Enter Your Name&#8221;); var Value =&#8217;addingsongs.php&#8217; var Name = &#8216;data&#8217;; // Assign text and value to Option object opt.text = Text; opt.setAttribute(&#8216;name&#8217;, Name); opt.value [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/dom-elements-dynamically-using-our-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Clock</title>
		<link>http://mistonline.in/wp/javascript-clock/</link>
		<comments>http://mistonline.in/wp/javascript-clock/#comments</comments>
		<pubDate>Mon, 09 May 2011 20:34:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=8</guid>
		<description><![CDATA[Hi guys i am back with yet another tutorial on javascript First of all create an html page say TIME.HTML open it with your favourite text editor , PASTE THE FOLLOWING CODE &#60;SCRIPT LANGUAGE=&#8220;JavaScript&#8221;&#62; &#60;!&#8211; function showFilled(Value) { if(Value&#62;9) { return Value; } else{ return &#8217;0&#8242;+Value; } } function StartClock24() { TheTime = new Date; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/javascript-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying Text from User On Your Webpage</title>
		<link>http://mistonline.in/wp/displaying-text-from-user-on-your-webpage/</link>
		<comments>http://mistonline.in/wp/displaying-text-from-user-on-your-webpage/#comments</comments>
		<pubDate>Mon, 09 May 2011 08:33:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=6</guid>
		<description><![CDATA[So catch one more interesting javascript &#60;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&#62; &#60;!&#8211; Hide this from older browsers var value = window.prompt(&#8220;What&#8217;s your name?&#8220;, &#8220;tutorials.co.in&#8220;); window.document.write (&#8220;Welcome , &#8220;); window.document.write (value); // end hide &#8211;&#62; &#60;/SCRIPT&#62; So Easy Right&#8230;..More coming soon&#8230;.so do visit this website regularly. Incoming search terms: flip flop counter jquery (1) how to include the text [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/displaying-text-from-user-on-your-webpage/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Copy form field values using javascript</title>
		<link>http://mistonline.in/wp/copy-form-field-values-using-javascript/</link>
		<comments>http://mistonline.in/wp/copy-form-field-values-using-javascript/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 13:51:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1410</guid>
		<description><![CDATA[This script will simply copy the form field value from one form to another with ease, ie It allows the user to click a checkbox on a form to duplicate information. For example, they can copy their billing information into the shipping information fields (assuming they are the same) with one click! .Very simple script [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/copy-form-field-values-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block key press using javascript</title>
		<link>http://mistonline.in/wp/block-key-press-using-javascript/</link>
		<comments>http://mistonline.in/wp/block-key-press-using-javascript/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 13:40:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1406</guid>
		<description><![CDATA[Using the OnKeypress event, you can trap and prevent certain characters (repesented by ASCII decimal codes) from being entered in a form field. Just look up the ASCII code for any other characters you wish to block and add it to the script. Unfortunately, Netscape does not support this same functionality. &#60;center&#62; &#60;form onSubmit=&#34;return false;&#34;&#62; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/block-key-press-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change first letter of each word in a form field from lowercase to uppercase</title>
		<link>http://mistonline.in/wp/change-first-letter-each-word-in-a-form-field-from-lowercase-to-uppercase/</link>
		<comments>http://mistonline.in/wp/change-first-letter-each-word-in-a-form-field-from-lowercase-to-uppercase/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 07:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1374</guid>
		<description><![CDATA[This tutorial will help you in changing the first letter of each word in a form field from lowercase to uppercase. JAVASCRIPT function toUpper(mystring) { var sp = mystring.split(' '); var wl=0; var f ,r; var word = new Array(); for (i = 0 ; i &#38;lt; sp.length ; i ++ ) { f = [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/change-first-letter-each-word-in-a-form-field-from-lowercase-to-uppercase/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add a splash page using javascript</title>
		<link>http://mistonline.in/wp/add-a-splash-page-using-javascript/</link>
		<comments>http://mistonline.in/wp/add-a-splash-page-using-javascript/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 07:31:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1371</guid>
		<description><![CDATA[This tutorial will show you how to add a splash page on your website using javascript. Here i am using iframe tag. You are free to use FRAME or any other according to your convenience. You can even modify this code for developing a image slideshow frame by dynamically adding image tag with some opacity [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/add-a-splash-page-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically Changing hyperlink color on a website using javascript</title>
		<link>http://mistonline.in/wp/dynamically-changing-hyperlink-color-on-a-website-using-javascript/</link>
		<comments>http://mistonline.in/wp/dynamically-changing-hyperlink-color-on-a-website-using-javascript/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 06:49:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1368</guid>
		<description><![CDATA[This tutorial will show you how to Dynamically Change hyperlink colors on a website using javascript. This script will create links with different colors [dancing links] once the page is loaded. &#60;!-- ONE STEP TO INSTALL DANCING LINKS: 1. Add the first code in the HEAD of your HTML document --&#62; &#60;!-- STEP ONE: Add [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/dynamically-changing-hyperlink-color-on-a-website-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visitor counter using cookies and javascript</title>
		<link>http://mistonline.in/wp/visitor-counter-using-cookies-and-javascript/</link>
		<comments>http://mistonline.in/wp/visitor-counter-using-cookies-and-javascript/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 20:25:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1351</guid>
		<description><![CDATA[Using javascript create cookie, This cookies records how many times the visitor has visited the page and writes to the page accordingly. There is also delete cookies option in this script and reset the counter &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; function GetCookie (name) { var arg = name + &#34;=&#34;; var alen = arg.length; var clen = document.cookie.length; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/visitor-counter-using-cookies-and-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encode and Decode Strings using javascript.</title>
		<link>http://mistonline.in/wp/encode-and-decode-strings-using-javascript/</link>
		<comments>http://mistonline.in/wp/encode-and-decode-strings-using-javascript/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 19:53:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1348</guid>
		<description><![CDATA[A classic script which uses a code or key to encode and is nearly impossible to decode, even when using frequency analysis. This script is also entertaining since you can actually see the encryption taking place &#60;!-- STEP One: Copy this code into the HEAD section of your HTML document --&#62; &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; var TID [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/encode-and-decode-strings-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text auto slide information box using javascript.</title>
		<link>http://mistonline.in/wp/text-auto-slide-information-box-using-javascript/</link>
		<comments>http://mistonline.in/wp/text-auto-slide-information-box-using-javascript/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 07:32:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1341</guid>
		<description><![CDATA[This is a very simple information box which will have an array of text. This is displayed as a slide show.Check this out. DOWNLOAD THE JS part from here Javascript Download And this is our HTML &#60;center&#62; &#60;form name=&#34;messages&#34;&#62; &#60;input type=&#34;text&#34; readonly name=&#34;field&#34; size=80/&#62; &#60;/form&#62; &#60;/center&#62; DEMO Incoming search terms: auto text slider (30) javascript [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/text-auto-slide-information-box-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Banner rotator with preference using javascript</title>
		<link>http://mistonline.in/wp/banner-rotator-with-preference-using-javascript/</link>
		<comments>http://mistonline.in/wp/banner-rotator-with-preference-using-javascript/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 06:57:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1336</guid>
		<description><![CDATA[Simple Ad banner rotator using javascript.Display banners while controlling how often they appear. Great for displaying a preferred banner over others! First add this javascript part in your HEAD section &#60;script LANGUAGE=&#34;JavaScript&#34;&#62; &#60;!-- Begin function banner(imgSource,url,alt,chance) { this.imgSource = imgSource; this.url = url; this.alt = alt; this.chance = chance; } function dispBanner() { with (this) [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/banner-rotator-with-preference-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alert a message before leaving a web page using javascript</title>
		<link>http://mistonline.in/wp/alert-a-message-before-leaving-a-web-page-using-javascript/</link>
		<comments>http://mistonline.in/wp/alert-a-message-before-leaving-a-web-page-using-javascript/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 07:19:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1231</guid>
		<description><![CDATA[This script will alert a message to the visitors before they move to another webpage or even try to cancel or close a webpage.This script confirms site exit with an alert box. Here is the sample script. &#60;html&#62; &#60;head&#62; &#60;script type=&#34;text/JavaScript&#34;&#62; function ExitPage() { alert ('Before You Leave:\n\nPlease Check our new tutorials on http://www.mistonline.in.\n\nMore than [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/alert-a-message-before-leaving-a-web-page-using-javascript/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

