<?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; js</title>
	<atom:link href="http://techiedrill.com/tag/js/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>
	</channel>
</rss>
