<?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>TechieDrill &#187; JavaScript</title>
	<atom:link href="http://techiedrill.com/category/web-developement/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://techiedrill.com</link>
	<description>Your World Of Technical Tutorials</description>
	<lastBuildDate>Tue, 05 Jan 2010 16:50:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JS Back Button</title>
		<link>http://techiedrill.com/2009/12/js-back-button/</link>
		<comments>http://techiedrill.com/2009/12/js-back-button/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 00:59:42 +0000</pubDate>
		<dc:creator>bprashanth</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[browsing]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[jscript]]></category>
		<category><![CDATA[previous]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=466</guid>
		<description><![CDATA[This tiny piece of JScript code enables the user to visit the previous page in his browsing session.
Usage
This particular JScript code can be used while running online slide shows or step by step instructions.
Script

&#60;form&#62;
&#60;input type="button" value="&#60;--" Back"
onClick="javascript: history.go(-1)"&#62;
&#60;/form&#62;

]]></description>
			<content:encoded><![CDATA[<p>This tiny piece of JScript code enables the user to visit the previous page in his browsing session.</p>
<h3>Usage</h3>
<p>This particular JScript code can be used while running online slide shows or step by step instructions.</p>
<h3>Script</h3>
<blockquote>
<pre><strong><span style="font-family: Arial,Helvetica; font-size: x-small;">&lt;form&gt;
&lt;input type="button" value="&lt;--" Back"
onClick="javascript: history.go(-1)"&gt;
&lt;/form&gt;</span></strong></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/12/js-back-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Mouse Right Click on a Web Page</title>
		<link>http://techiedrill.com/2009/11/disable-mouse-right-click-on-a-web-page/</link>
		<comments>http://techiedrill.com/2009/11/disable-mouse-right-click-on-a-web-page/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 05:31:10 +0000</pubDate>
		<dc:creator>bprashanth</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[right]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=417</guid>
		<description><![CDATA[The following javascript code is used to disable right clicking on a web page.
Disabling Right Click can be a useful way to prevent your users from copying/pasting text on the page. It is thus used as a Security tool.
Here is a simple code to accomplish the same, just paste in the head section of your [...]]]></description>
			<content:encoded><![CDATA[<p>The following javascript code is used to disable right clicking on a web page.</p>
<p>Disabling Right Click can be a useful way to prevent your users from copying/pasting text on the page. It is thus used as a Security tool.</p>
<p>Here is a simple code to accomplish the same, just paste in the head section of your page.</p>
<blockquote>
<pre>&lt;SCRIPT language="Text/JavaScript"&gt;
 document.onmousedown = HandleClick()
 function HandleClick()
 {
  if ((event.button==2) || (event.button==3)
   alert("Right Click has been disabled!");
 }
&lt;/SCRIPT&gt;</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/disable-mouse-right-click-on-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: With Statement</title>
		<link>http://techiedrill.com/2009/11/javascript-with-statement/</link>
		<comments>http://techiedrill.com/2009/11/javascript-with-statement/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:59:03 +0000</pubDate>
		<dc:creator>karnamrajesh</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Statement]]></category>
		<category><![CDATA[with]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=405</guid>
		<description><![CDATA[The with statement allows you to access the methods and properties of an object without having
to specify the name of the object on every line.Without the with statement, you will always need to
specify the name of the object you are working on next to every property or method you wish
to access:
With statement allows to access [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">The with statement allows you to access the methods and properties of an object without having</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">to specify the name of the object on every line.Without the with statement, you will always need to</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">specify the name of the object you are working on next to every property or method you wish</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">to access:</div>
<p>With statement allows to access properties of an object without specifying the object with each and every property. By specifying the keyword WITH with the object all the properties of that object can be accessed without specifying the object name for each and every property</p>
<p><strong>For instance</strong></p>
<p><em>with (document){</em></p>
<p><em> write(&#8221;This is line 1 &lt;BR&gt;&#8221;);</em></p>
<p><em> write(&#8221;This is line 2 &lt;BR&gt;&#8221;);</em></p>
<p><em><br />
</em></p>
<p><em> write(&#8221;This is line 3 &lt;BR&gt;&#8221;);</em></p>
<p><em> write(&#8221;This is line 4 &lt;BR&gt;&#8221;);</em></p>
<p><em>}</em></p>
<p><strong>NOTE:<em> </em></strong></p>
<p><em> </em></p>
<p><em></p>
<blockquote><p>The objects set with WITH keyword has scope only inside the curly braces. Objects outside the braces needs to be explicitly mentioned with the object and property names</p></blockquote>
<p></em></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-with-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 21 &#8211; replace</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-21-replace/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-21-replace/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:37:55 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=372</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on replace.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/w9K2-sGw6JM&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/w9K2-sGw6JM&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=w9K2-sGw6JM">Click Here</a></p>
<p><strong>Tutorial on replace.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-21-replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 27 &#8211; Object Initializers</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-27-object-initializers/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-27-object-initializers/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:36:16 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[initalizers]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[object initalizers]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=383</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on Object Initializers.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/l30q85_HftI&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/l30q85_HftI&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=l30q85_HftI">Click Here</a></p>
<p><strong>Tutorial on Object Initializers.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-27-object-initializers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 26 &#8211; Building an Object</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-26-building-an-object/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-26-building-an-object/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:33:20 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Building]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=381</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on Building an Object.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/nUg7nStt00o&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nUg7nStt00o&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=nUg7nStt00o">Click Here</a></p>
<p><strong>Tutorial on Building an Object.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-26-building-an-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 25 &#8211; Introduction to Objects</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-25-introduction-to-objects/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-25-introduction-to-objects/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:32:02 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Objects]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=379</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on Introduction to Objects.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/Bln9XbgbGrg&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Bln9XbgbGrg&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=Bln9XbgbGrg">Click Here</a></p>
<p><strong>Tutorial on Introduction to Objects.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-25-introduction-to-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial – 24 – Introduction to Event Handlers</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-24-event-handlers-introduction/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-24-event-handlers-introduction/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:30:40 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Event Handlers]]></category>
		<category><![CDATA[Handlers]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=377</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on Event Handlers Introduction.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/Bp0lcXlF7xc&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Bp0lcXlF7xc&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=Bp0lcXlF7xc">Click Here</a></p>
<p><strong>Tutorial on Event Handlers Introduction.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-24-event-handlers-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 23 &#8211; Browser Information</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-23-browser-information/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-23-browser-information/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:29:15 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=375</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on Browser Information.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/ZK1U3lsb2yk&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZK1U3lsb2yk&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=ZK1U3lsb2yk">Click Here</a></p>
<p><strong>Tutorial on Browser Information.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-23-browser-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Tutorial &#8211; 22 &#8211; Basic Math Objects</title>
		<link>http://techiedrill.com/2009/11/javascript-tutorial-22-basic-math-objects/</link>
		<comments>http://techiedrill.com/2009/11/javascript-tutorial-22-basic-math-objects/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:27:53 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[Javascript Tutorial]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Objects]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=373</guid>
		<description><![CDATA[
To download this you tube video, Click Here
Tutorial on Basic Math Objects.
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/PwlmEeWPYEs&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/PwlmEeWPYEs&#038;hl=en_US&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p>To download this you tube video, <a href="http://www.keephd.com/watch?v=PwlmEeWPYEs">Click Here</a></p>
<p><strong>Tutorial on Basic Math Objects.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/javascript-tutorial-22-basic-math-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
