<?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 - JavaScript</title>
		<link>http://www.webmasters.am/forums</link>
		<description>Get help with Javascript coding, DHTML, AJAX, and more.</description>
		<language>en</language>
		<lastBuildDate>Fri, 10 Sep 2010 12:32:52 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.webmasters.am/forums/images/misc/rss.jpg</url>
			<title>Webmaster Forum - JavaScript</title>
			<link>http://www.webmasters.am/forums</link>
		</image>
		<item>
			<title>jsPDF: Generating your PDF Web Page Documents using JavaScript</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10585&amp;goto=newpost</link>
			<pubDate>Fri, 10 Sep 2010 00:37:01 GMT</pubDate>
			<description>jsPDF is an open-source JavaScript library written by James, this tool allow us generate PDF web page documents in server-side and client-side by...</description>
			<content:encoded><![CDATA[<div>jsPDF is an open-source JavaScript library written by James, this tool allow us generate PDF web page documents in server-side and client-side by using nothing... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/utility/jspdf-generating-pdf-web-page-documents-using-javascript.jpg[/IMG]<br />
Demo: JavaScript jsPDF: Generating your PDF Web Page Documents using JavaScript<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<b>Step 1</b>: Place JavaScript below in your HEAD section<br />
JavaScript<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;script type=&quot;text/javascript&quot; src=&quot;base64.js&quot;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;sprintf.js&quot;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;jspdf.js&quot;&gt;&lt;/script&gt;<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
<br />
function demo1() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var doc = new jsPDF();<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 20, 'Hello world!');<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30, 'This is client-side Javascript, pumping out a PDF.');<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.addPage();<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 20, 'Do you like that?');<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; // Output as Data URI<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.output('datauri');<br />
}<br />
<br />
function demo2() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var doc = new jsPDF();<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setFontSize(22);<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 20, 'This is a title');<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setFontSize(16);<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30, 'This is some normal sized text underneath.');&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; // Output as Data URI<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.output('datauri');<br />
}<br />
<br />
function demo3() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var doc = new jsPDF();<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 20, 'This PDF has a title, subject, author, keywords and a creator.');<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; // Optional - set properties on the document<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setProperties({<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; title: 'Title',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; subject: 'This is the subject',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; author: 'James Hall',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; keywords: 'generated, javascript, web 2.0, ajax',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; creator: 'MEEE'<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; // Output as Data URI<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.output('datauri');<br />
}<br />
<br />
function demo4() {&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; var name = prompt('What is your name?');<br />
&nbsp; &nbsp; &nbsp; &nbsp; var multiplier = prompt('Enter a number:');<br />
&nbsp; &nbsp; &nbsp; &nbsp; multiplier = parseInt(multiplier);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; var doc = new jsPDF();<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setFontSize(22);&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 20, 'Questions');<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setFontSize(16);<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30, 'This belongs to: ' + name);<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; for(var i = 1; i &lt;= 12; i ++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30 + (i * 10), i + ' x ' + multiplier + ' = ___');<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.addPage();<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setFontSize(22);<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 20, 'Answers');<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.setFontSize(16);<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; for(var i = 1; i &lt;= 12; i ++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30 + (i * 10), i + ' x ' + multiplier + ' = ' + (i * multiplier));<br />
&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.output('datauri');<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
}<br />
<br />
&lt;/script&gt;</code><hr />
</div><b>Step 2</b>: Place HTML below in your BODY section<br />
HTML<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;h2&gt;Simple Two-page Text Document&lt;/h2&gt;<br />
&lt;pre&gt;var doc = new jsPDF();<br />
doc.text(20, 20, 'Hello world!');<br />
doc.text(20, 30, 'This is client-side Javascript, pumping out a PDF.');<br />
doc.addPage();<br />
doc.text(20, 20, 'Do you like that?');<br />
<br />
// Output as Data URI<br />
doc.output('datauri');&lt;/pre&gt;<br />
&lt;a href=&quot;javascript<b></b>:demo1()&quot;&gt;Run Code&lt;/a&gt;<br />
<br />
&lt;h2&gt;Different font sizes&lt;/h2&gt;<br />
&lt;pre&gt;var doc = new jsPDF();<br />
doc.setFontSize(22);<br />
doc.text(20, 20, 'This is a title');<br />
<br />
doc.setFontSize(16);<br />
doc.text(20, 30, 'This is some normal sized text underneath.');&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
// Output as Data URI<br />
doc.output('datauri');&lt;/pre&gt;<br />
&lt;a href=&quot;javascript<b></b>:demo2()&quot;&gt;Run Code&lt;/a&gt;<br />
<br />
<br />
&lt;h2&gt;Adding metadata&lt;/h2&gt;<br />
&lt;pre&gt;var doc = new jsPDF();<br />
doc.text(20, 20, 'This PDF has a title, subject, author, keywords and a creator.');<br />
<br />
// Optional - set properties on the document<br />
doc.setProperties({<br />
&nbsp; &nbsp; &nbsp; &nbsp; title: 'Title',<br />
&nbsp; &nbsp; &nbsp; &nbsp; subject: 'This is the subject',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; author: 'James Hall',<br />
&nbsp; &nbsp; &nbsp; &nbsp; keywords: 'generated, javascript, web 2.0, ajax',<br />
&nbsp; &nbsp; &nbsp; &nbsp; creator: 'MEEE'<br />
});<br />
<br />
// Output as Data URI<br />
doc.output('datauri');&lt;/pre&gt;<br />
&lt;a href=&quot;javascript<b></b>:demo3()&quot;&gt;Run Code&lt;/a&gt;<br />
<br />
<br />
&lt;h2&gt;Example of user input&lt;/h2&gt;<br />
&lt;pre&gt;var name = prompt('What is your name?');<br />
var multiplier = prompt('Enter a number:');<br />
multiplier = parseInt(multiplier);<br />
<br />
var doc = new jsPDF();<br />
doc.setFontSize(22);&nbsp; &nbsp; &nbsp; &nbsp; <br />
doc.text(20, 20, 'Questions');<br />
doc.setFontSize(16);<br />
doc.text(20, 30, 'This belongs to: ' + name);<br />
<br />
for(var i = 1; i &lt;= 12; i ++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30 + (i * 10), i + ' x ' + multiplier + ' = ___');<br />
}<br />
<br />
doc.addPage();<br />
doc.setFontSize(22);<br />
doc.text(20, 20, 'Answers');<br />
doc.setFontSize(16);<br />
<br />
for(var i = 1; i &lt;= 12; i ++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; doc.text(20, 30 + (i * 10), i + ' x ' + multiplier + ' = ' + (i * multiplier));<br />
}&nbsp; &nbsp; &nbsp; &nbsp; <br />
doc.output('datauri');&lt;/pre&gt;<br />
&lt;a href=&quot;javascript<b></b>:demo4()&quot;&gt;Run Code&lt;/a&gt;</code><hr />
</div><b>Step 3</b>: Download files below<br />
Files<br />
base64.js<br />
jspdf.js<br />
sprintf.js<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">Javascript Music Player</font> - <font color="Blue">Random Text Generator</font> - Floating Image Script</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10585</guid>
		</item>
		<item>
			<title>jsClock: Featured Digital Clock JavaScript</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10567&amp;goto=newpost</link>
			<pubDate>Thu, 09 Sep 2010 00:28:26 GMT</pubDate>
			<description><![CDATA[If you're needing a simple digital clock that is updating automatically and takes directly the time from the server, also you want to show the time...]]></description>
			<content:encoded><![CDATA[<div>If you're needing a simple digital clock that is updating automatically and takes directly the time from the server, also you want to show the time in other count... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/time/jsclock-featured-digital-clock-javascript.jpg[/IMG]<br />
Demo: JavaScript jsClock: Featured Digital Clock JavaScript<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<b>Step 1</b>: Use CSS code below for styling the script<br />
CSS<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&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 />
.clock{<br />
&nbsp; &nbsp; &nbsp; &nbsp; cursor:pointer;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding:5px 5px 5px 5px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin:5px 0 5px 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; width:70px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-border-bottom-right-radius: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-border-bottom-left-radius: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-border-top-right-radius: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -webkit-border-top-left-radius: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-border-radius-bottomright: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-border-radius-bottomleft: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-border-radius-topright: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; -moz-border-radius-topleft: 4px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; text-align:center;<br />
&nbsp; &nbsp; &nbsp; &nbsp; font-weight: bold;<br />
&nbsp; &nbsp; &nbsp; &nbsp; font-family: arial;<br />
}<br />
<br />
<br />
#clock { <br />
&nbsp; &nbsp; &nbsp; &nbsp; background-color:#000000;<br />
&nbsp; &nbsp; &nbsp; &nbsp; color:#00CC66; <br />
}<br />
<br />
#reloj { <br />
&nbsp; &nbsp; &nbsp; &nbsp; background-color:#999999;<br />
&nbsp; &nbsp; &nbsp; &nbsp; color:#FFFFFF; <br />
}<br />
<br />
<br />
#rellotje { <br />
&nbsp; &nbsp; &nbsp; &nbsp; background-color:#237ab2;<br />
&nbsp; &nbsp; &nbsp; &nbsp; color:#FFFFFF; <br />
}<br />
&lt;/style&gt;</code><hr />
</div><b>Step 2</b>: Copy &amp; Paste JavaScript code below in your HEAD section<br />
JavaScript<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;script 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 />
function moveClock(idClock,startTime){//move given clock<br />
&nbsp; &nbsp; &nbsp; &nbsp; var timeout=1000;//miliseconds to repeat the function<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ( startTime === undefined ) {//just take the browser time<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rightNow = new Date();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hour = rightNow.getHours();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; minute = rightNow.getMinutes();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; second = rightNow.getSeconds();&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; else{//starttime set<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rightNow = startTime.split(':',3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hour = parseInt(rightNow[0],10);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; minute =&nbsp; parseInt(rightNow[1],10);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; second =&nbsp; parseInt(rightNow[2],10);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (second==59){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (minute==59){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (hour==23) hour=0;&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else hour++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; minute=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }else minute++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; second=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }else second++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (minute&lt;10) minute= &quot;0&quot; + minute;<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (second&lt;10) second= &quot;0&quot; + second;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; currentTime=hour + &quot;:&quot; + minute + &quot;:&quot; +second;// tim to return<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.getElementById(idClock).innerHTML = currentTime;//tim for the HTML element<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //recursivity<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (startTime===undefined) setTimeout(&quot;moveClock('&quot;+idClock+&quot;')&quot;,timeout);//browser time<br />
&nbsp; &nbsp; &nbsp; &nbsp; else setTimeout(&quot;moveClock('&quot;+idClock+&quot;','&quot;+currentTime+&quot;')&quot;,timeout);//set time<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
}<br />
&lt;/script&gt;</code><hr />
</div><b>Step 3</b>: Place HTML below in your BODY section<br />
HTML<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Normal clock using browser time: <br />
<br />
&lt;div id=&quot;clock&quot; class=&quot;clock&quot;&gt;clock&lt;/div&gt;moveClock(&quot;clock&quot;);&lt;br /&gt;&lt;br /&gt;<br />
&lt;hr&gt;<br />
Clock using server time:<br />
&lt;div id=&quot;reloj&quot; class=&quot;clock&quot;&gt;reloj&lt;/div&gt;&nbsp; moveClock(&quot;reloj&quot;,&quot;&lt; ?php echo date(&quot;G:i:s&quot;);? &gt;&quot;);&lt;br /&gt;&lt;br /&gt;<br />
&lt;hr&gt;<br />
Clock with manual time: <br />
&lt;div id=&quot;rellotje&quot; class=&quot;clock&quot;&gt;rellotje&lt;/div&gt; moveClock(&quot;rellotje&quot;,&quot;23:58:56&quot;);&lt;br /&gt;&lt;br /&gt;<br />
&lt;hr&gt;<br />
<br />
&lt;script&nbsp; type='text/javascript'&gt;<br />
moveClock(&quot;clock&quot;);<br />
moveClock(&quot;reloj&quot;,&quot;2:23:25&quot;);<br />
moveClock(&quot;rellotje&quot;,&quot;23:58:56&quot;);<br />
&lt;/script&gt;</code><hr />
</div><br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">Javascript floating message</font> - <font color="Blue">Javascript multi level drop down menu</font> - JavaScript in_array()</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10567</guid>
		</item>
		<item>
			<title>The Ultimate JavaScript Tutorial in Web Design</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10563&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 00:35:04 GMT</pubDate>
			<description><![CDATA[In this free ultimate JavaScript tutorial, you'll find the full resources in web development, web design and web programming/coding. From the list of...]]></description>
			<content:encoded><![CDATA[<div>In this free ultimate JavaScript tutorial, you'll find the full resources in web development, web design and web programming/coding. From the list of useful resources in this JavaScript tutorial, you ... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/ultimate-javascript-tutorial-in-web-design.jpg[/IMG]<br />
Demo: JavaScript The Ultimate JavaScript Tutorial in Web Design<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">JavaScript Make link open in new tab/window</font> - <font color="Blue">JavaScript World clock</font> - circumference calculator</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10563</guid>
		</item>
		<item>
			<title>Top 10 Free Web Chat box Plug-ins and Add-ons</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10426&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 00:33:45 GMT</pubDate>
			<description>If you want to make your website more interactive and attract thousands of visitors on a regular basis, then adding an online chat box to the website...</description>
			<content:encoded><![CDATA[<div>If you want to make your website more interactive and attract thousands of visitors on a regular basis, then adding an online chat box to the website is perhaps one ... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/top-10-free-web-chat-box-plugins-addons.jpg[/IMG]<br />
Demo: JavaScript Top 10 Free Web Chat box Plug-ins and Add-ons<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div 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.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10426</guid>
		</item>
		<item>
			<title>Great Powered Resources for 7 Helpful jQuery Plug-ins</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10398&amp;goto=newpost</link>
			<pubDate>Thu, 26 Aug 2010 00:22:11 GMT</pubDate>
			<description>This free JavaScript article provides a list of over 20 great resources for jQuery add-ons, such as: jQuery AJAX plugin, Paralax, jQuery UI plugin,...</description>
			<content:encoded><![CDATA[<div>This free JavaScript article provides a list of over 20 great resources for jQuery add-ons, such as: jQuery AJAX plugin, Paralax, jQuery UI plugin, jQuery plugin form, jQuery Background tricks, jQuery... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/great-powered-resources-helpful-jquery-plug-ins.jpg[/IMG]<br />
Demo: JavaScript Great Powered Resources for 7 Helpful jQuery Plug-ins<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">JavaScript Countdown Timer</font> - <font color="Blue">JavaScript Web based Music Player</font> - Free JavaScript Codes</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10398</guid>
		</item>
		<item>
			<title>JavaScript Try and Catch Statement in Advance</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10326&amp;goto=newpost</link>
			<pubDate>Sat, 21 Aug 2010 02:30:35 GMT</pubDate>
			<description>Through this free JavaScript article tutorial, Louis gives you a detailed viewpoint about Try and Catch statement in the JavaScript wen programming...</description>
			<content:encoded><![CDATA[<div>Through this free JavaScript article tutorial, Louis gives you a detailed viewpoint about Try and Catch statement in the JavaScript wen programming language; by specif... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/javascript-try-catch-statement-advance.jpg[/IMG]<br />
Demo: JavaScript JavaScript Try and Catch Statement in Advance<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">Javascript Music Player</font> - <font color="Blue">Random Text Generator</font> - Floating Image Script</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10326</guid>
		</item>
		<item>
			<title>Super Amazing jQuery Dynamic Navigation Menu Solutions</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10325&amp;goto=newpost</link>
			<pubDate>Sat, 21 Aug 2010 01:51:54 GMT</pubDate>
			<description>In the world of jQuery framework, there are many design miracles made by web developers, web designers that attract the web audiences. One of these...</description>
			<content:encoded><![CDATA[<div>In the world of jQuery framework, there are many design miracles made by web developers, web designers that attract the web audiences. One of these jQuery d... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/super-amazing-jquery-dynamic-navigation-menu-solutions.jpg[/IMG]<br />
Demo: JavaScript Super Amazing jQuery Dynamic Navigation Menu Solutions<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">JavaScript Bookmark Page script</font> - <font color="Blue">JavaScript Color Wheel</font> - JavaScript Image slideshow</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10325</guid>
		</item>
		<item>
			<title>Incredible and Amazing 3D JavaScript Canvas Enginges</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10275&amp;goto=newpost</link>
			<pubDate>Tue, 17 Aug 2010 02:00:54 GMT</pubDate>
			<description>Did you ever imagine the JavaScript programming language could render fantastic, incredible out of 3D effects, animations? Let check out these...</description>
			<content:encoded><![CDATA[<div>Did you ever imagine the JavaScript programming language could render fantastic, incredible out of 3D effects, animations? Let check out these JavaScript codes presented in this free JavaScript articl... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/incredible-amazing-3d-javascript-canvas-enginges.jpg[/IMG]<br />
Demo: JavaScript Incredible and Amazing 3D JavaScript Canvas Enginges<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">JavaScript Enlarge Image</font> - <font color="Blue">JavaScript Fading Slide Show</font> - JavaScript Rotating Image script</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10275</guid>
		</item>
		<item>
			<title>Helpful JavaScript Time and Date Picker, Plugins for Frameworks</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10274&amp;goto=newpost</link>
			<pubDate>Tue, 17 Aug 2010 01:27:35 GMT</pubDate>
			<description>Do you need a beautiful JavaScript time/date picker for your web blog? Just spend a little of time to view these JavaScript time and date pickers in...</description>
			<content:encoded><![CDATA[<div>Do you need a beautiful JavaScript time/date picker for your web blog? Just spend a little of time to view these JavaScript time and date pickers in action, maybe you wi... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/helpful-javascript-time-date-picker-plugins-frameworks.jpg[/IMG]<br />
Demo: JavaScript Helpful JavaScript Time and Date Picker, Plugins for Frameworks<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center"><font color="DarkOrange">Javascript floating message</font> - <font color="Blue">Javascript multi level drop down menu</font> - JavaScript in_array()</div></div>

]]></content:encoded>
			<category domain="http://www.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10274</guid>
		</item>
		<item>
			<title>10 Tiptop Analog and Digital Clock Resources and Techniques with Javascript</title>
			<link>http://www.webmasters.am/forums/showthread.php?t=10261&amp;goto=newpost</link>
			<pubDate>Sat, 14 Aug 2010 17:22:25 GMT</pubDate>
			<description><![CDATA[With beautiful and amazing analog or digital clock on the web pages, you're able to attract more visitors to your website if it relates to some...]]></description>
			<content:encoded><![CDATA[<div>With beautiful and amazing analog or digital clock on the web pages, you're able to attract more visitors to your website if it relates to some date/time. In Flash, the web developers and web designer... detail at JavaScriptBank. com - 2.000+ free JavaScript codes<br />
<br />
<div align="center">[IMG]hxxp ://w w w.javascriptbank. com/javascript.images/article/10-tiptop-analog-digital-clock-resources-techniques-javascript.jpg[/IMG]<br />
Demo: JavaScript 10 Tiptop Analog and Digital Clock Resources and Techniques with Javascript<br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<div 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.webmasters.am/forums/forumdisplay.php?f=18">JavaScript</category>
			<dc:creator>JavaScriptBank.com</dc:creator>
			<guid isPermaLink="true">http://www.webmasters.am/forums/showthread.php?t=10261</guid>
		</item>
	</channel>
</rss>
