<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Webmaster Forum - Scripts</title>
		<link>http://www.webtalkforums.com/</link>
		<description><![CDATA[This forum is for the discussion of scripts, if you're having issues with a script, you may ask for assistance in here.]]></description>
		<language>en</language>
		<lastBuildDate>Sat, 25 May 2013 12:34:42 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>30</ttl>
		<image>
			<url>http://www.webtalkforums.com/images_wtf/misc/rss.png</url>
			<title>Webmaster Forum - Scripts</title>
			<link>http://www.webtalkforums.com/</link>
		</image>
		<item>
			<title>Javascript Countdown Timer redirecting Affiliate Links</title>
			<link>http://www.webtalkforums.com/scripts/202928-javascript-countdown-timer-redirecting-affiliate-links.html</link>
			<pubDate>Tue, 21 May 2013 05:28:11 GMT</pubDate>
			<description>With this simple JavaScript countdown timer, you will easily notice to visitors that the link will be redirected. This JavaScript script is quite...</description>
			<content:encoded><![CDATA[<div>With this simple JavaScript countdown timer, you will easily notice to visitors that the link will be redirected. This JavaScript script is quite short and very easy to modify as you want; so this cod... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div style="text-align: center;">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/time/javascript-countdown-timer-redirecting-affiliate-links.jpg[/IMG]<br />
Demo: JavaScript Javascript Countdown Timer redirecting Affiliate Links<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<b>Step 1</b>: CSS below for styling thescript, place it into HEAD section<br />
CSS<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;style type=&quot;text/css&quot;&gt;<br />
/*<br />
&nbsp; &nbsp;  This script downloaded from w w w.JavaScriptBank. com<br />
&nbsp; &nbsp;  Come to view and download over 2000+ free javascript at w w w.JavaScriptBank. com<br />
*/<br />
<br />
body {<br />
&nbsp;  color: black;<br />
&nbsp;  background: white;<br />
&nbsp;  font: bold 18pt Verdana, Arial, Helvetica, sans-serif;<br />
&nbsp;  text-align: center;<br />
}<br />
<br />
span.counter {<br />
&nbsp;  color: red;<br />
&nbsp;  cursor: default;<br />
&nbsp;  font-size: larger;<br />
}<br />
<br />
div. info {<br />
&nbsp;  margin: 0 auto;<br />
&nbsp;  text-align: left;<br />
&nbsp;  font-size: smaller;<br />
&nbsp;  width: 80%;<br />
&nbsp;  margin-top: 2em;<br />
}<br />
&lt;/style&gt;</code><hr />
</div><b>Step 2</b>: Place JavaScript below in your HEAD section<br />
JavaScript<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;script name=&quot;countdownRedirect.<acronym title="JavaScript">js</acronym>&quot; type=&quot;text/javascript&quot;&gt;<br />
/*<br />
&nbsp; &nbsp;  This script downloaded from w w w.JavaScriptBank. com<br />
&nbsp; &nbsp;  Come to view and download over 2000+ free javascript at w w w.JavaScriptBank. com<br />
*/<br />
<br />
/**<br />
&nbsp;* Copyright (C) 2006-2009, QuietAffiliate. com. All rights reserved.<br />
&nbsp;*<br />
&nbsp;* Script Name: Countdown Redirect<br />
&nbsp;*<br />
&nbsp;* THIS SOURCE CODE MAY BE USED FREELY PROVIDED THAT<br />
&nbsp;* YOU DO NOT REMOVE THIS MESSAGE.<br />
&nbsp;*<br />
&nbsp;* You can obtain this script at hxxp ://w w w.QuietAffiliate. com<br />
&nbsp;*/<br />
<br />
function countdownRedirect(url, msg)<br />
{<br />
&nbsp;  var TARG_ID = &quot;COUNTDOWN_REDIRECT&quot;;<br />
&nbsp;  var DEF_MSG = &quot;Redirecting...&quot;;<br />
<br />
&nbsp;  if( ! msg )<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; msg = DEF_MSG;<br />
&nbsp;  }<br />
<br />
&nbsp;  if( ! url )<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; throw new Error('You didn\'t include the &quot;url&quot; parameter');<br />
&nbsp;  }<br />
<br />
<br />
&nbsp;  var e = document.getElementById(TARG_ID);<br />
<br />
&nbsp;  if( ! e )<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; throw new Error('&quot;COUNTDOWN_REDIRECT&quot; element id not found');<br />
&nbsp;  }<br />
<br />
&nbsp;  var cTicks = parseInt(e.innerHTML);<br />
<br />
&nbsp;  var timer = setInterval(function()<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; if( cTicks )<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  e.innerHTML = --cTicks;<br />
&nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  clearInterval(timer);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  document.body.innerHTML = msg;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  location = url;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp;  }, 1000);<br />
}<br />
<br />
window.onload = function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; countdownRedirect(&quot;hxxp ://w w w.javascriptbank. com&quot;, &quot;Thanks For Visiting&quot;)<br />
}<br />
&lt;/script&gt;</code><hr />
</div><b>Step 3</b>: Place HTML below in your BODY section<br />
HTML<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;div class=&quot;info&quot;&gt;This is a demo page of the redirect script in action, code and instructions can be found at &lt;strong&gt;QuietAffiliate. com&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;You will automatically be redirected in &lt;span class=&quot;counter&quot; id=&quot;COUNTDOWN_REDIRECT&quot;&gt;10&lt;/span&gt; seconds.&lt;/center&gt;<br />
&lt;/div&gt;</code><hr />
</div><br />
<br />
<br />
<br />
<br />
<div style="text-align: center;"><font color="DarkOrange">Command to print web page in javascript</font> - <font color="Blue">Javascript Time Picker</font> - JavaScript Go To URL Box</div></div>

]]></content:encoded>
			<category domain="http://www.webtalkforums.com/scripts/">Scripts</category>
			<dc:creator>JavaScriptBank</dc:creator>
			<guid isPermaLink="true">http://www.webtalkforums.com/scripts/202928-javascript-countdown-timer-redirecting-affiliate-links.html</guid>
		</item>
		<item>
			<title>More 30 Excellent JavaScript/AJAX based Photo Galleries to Boost your Sites</title>
			<link>http://www.webtalkforums.com/scripts/202866-more-30-excellent-javascript-ajax-based-photo.html</link>
			<pubDate>Mon, 13 May 2013 10:06:22 GMT</pubDate>
			<description>More than 2 years ago, JavaScriptBank. com had presented to you a list of detail at JavaScriptBank. com</description>
			<content:encoded><![CDATA[<div>More than 2 years ago, JavaScriptBank. com had presented to you a list of detail at JavaScriptBank. com</div>

]]></content:encoded>
			<category domain="http://www.webtalkforums.com/scripts/">Scripts</category>
			<dc:creator>JavaScriptBank</dc:creator>
			<guid isPermaLink="true">http://www.webtalkforums.com/scripts/202866-more-30-excellent-javascript-ajax-based-photo.html</guid>
		</item>
		<item>
			<title>How to Implement Interfaces in JavaScript</title>
			<link>http://www.webtalkforums.com/scripts/202823-how-implement-interfaces-javascript.html</link>
			<pubDate>Tue, 07 May 2013 02:53:11 GMT</pubDate>
			<description>In Object-Oriented programming languages, an interface defines a set of methods which a Class must include in order to implement the interface...</description>
			<content:encoded><![CDATA[<div>In Object-Oriented programming languages, an interface defines a set of methods which a Class must include in order to implement the interface (otherwise, if the Class is missing the required methods,... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div style="text-align: center;">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/how-implement-interfaces-in-javascript.jpg[/IMG]<br />
Demo: JavaScript How to Implement Interfaces in JavaScript<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div style="text-align: center;"><font color="DarkOrange">Command to print web page in javascript</font> - <font color="Blue">Javascript Time Picker</font> - JavaScript Go To URL Box</div></div>

]]></content:encoded>
			<category domain="http://www.webtalkforums.com/scripts/">Scripts</category>
			<dc:creator>JavaScriptBank</dc:creator>
			<guid isPermaLink="true">http://www.webtalkforums.com/scripts/202823-how-implement-interfaces-javascript.html</guid>
		</item>
	</channel>
</rss>
