<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2777491815138466471</id><updated>2012-02-16T18:40:16.274-08:00</updated><category term='forms'/><category term='AJAX'/><category term='Calendars'/><category term='DHTML'/><category term='JavaScript Buttons'/><category term='Date and Time'/><title type='text'>Online JavaScript Tutorials</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-3996729424224697784</id><published>2007-12-14T10:02:00.000-08:00</published><updated>2007-12-31T01:34:37.899-08:00</updated><title type='text'>Get key press events using JavaScript</title><content type='html'>Get Key Press Events Using JavaScript&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;script language="javascript" type="text/javascript"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;function CheckPressedKey(Key)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;switch(KeyID)&lt;br /&gt;{&lt;br /&gt;case 13:&lt;br /&gt; alert("Key Pressed: Enter");&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;   case 16:&lt;br /&gt;    alert("Key Pressed: Shift");&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;case 17:&lt;br /&gt;alert("Key Pressed: Ctrl");&lt;br /&gt;   break;&lt;br /&gt;&lt;br /&gt;   case 18:&lt;br /&gt;alert("Key Pressed: Alt");&lt;br /&gt;   break;&lt;br /&gt;&lt;br /&gt;   case 19:&lt;br /&gt;alert("Key Pressed: Pause");&lt;br /&gt;   break;&lt;br /&gt;&lt;br /&gt;   case 37:&lt;br /&gt;alert("Key Pressed: Arrow Left");&lt;br /&gt;   break;&lt;br /&gt;&lt;br /&gt;   case 38:&lt;br /&gt;alert("Key Pressed: Arrow Up");&lt;br /&gt;   break;&lt;br /&gt;&lt;br /&gt;   case 39:&lt;br /&gt;alert("Key Pressed: Arrow Right");&lt;br /&gt;   break;&lt;br /&gt;&lt;br /&gt;   case 40:&lt;br /&gt;alert("Key Pressed: Arrow Down");&lt;br /&gt;   break;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;End script&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;CheckPressedKey(event)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-3996729424224697784?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/3996729424224697784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=3996729424224697784' title='36 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3996729424224697784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3996729424224697784'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/12/get-key-press-events-using-javascript.html' title='Get key press events using JavaScript'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>36</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-3918390732722560836</id><published>2007-12-10T08:13:00.000-08:00</published><updated>2007-12-10T08:18:44.706-08:00</updated><title type='text'>JavaScript trim function Equivalent of PHP trim Function</title><content type='html'>This function returns a string with whitespace stripped/removed from the beginning and end of string . Without the second parameter, trim() will strip these characters:&lt;br /&gt;&lt;br /&gt;    * " " (ASCII 32 (0x20)), an ordinary space.&lt;br /&gt;    * "\t" (ASCII 9 (0x09)), a tab.&lt;br /&gt;    * "\n" (ASCII 10 (0x0A)), a new line (line feed).&lt;br /&gt;    * "\r" (ASCII 13 (0x0D)), a carriage return.&lt;br /&gt;    * "\0" (ASCII 0 (0x00)), the NUL-byte.&lt;br /&gt;    * "\x0B" (ASCII 11 (0x0B)), a vertical tab.&lt;br /&gt;&lt;br /&gt;In PHP we can easily use trim($string) and all whitespace are stripped And in JavaScript we use this function to stripped the White spaces.&lt;br /&gt;&lt;br /&gt;function trim(sValue)&lt;br /&gt;{&lt;br /&gt;   return sValue.replace(/^\s+|\s+$/g, "");&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-3918390732722560836?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/3918390732722560836/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=3918390732722560836' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3918390732722560836'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3918390732722560836'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/12/javascript-trim-function-equivalent-of.html' title='JavaScript trim function Equivalent of PHP trim Function'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-8157834513647776379</id><published>2007-11-28T20:39:00.000-08:00</published><updated>2007-11-28T21:03:57.588-08:00</updated><title type='text'>JavaScript Equivalent of PHP Explode Function</title><content type='html'>In PHP we can easily break a long string into smaller parts by using the explode() function of PHP. In run rime, this function works like this:&lt;br /&gt;&lt;br /&gt;    $string_to_Explode="JavaScript Equivalent of PHP Explode Function";&lt;br /&gt;    $explodestring=explode(" ", $string_to_Explode); &lt;br /&gt;&lt;br /&gt;After the execution of the second command the variable $explodestring is an array such that,&lt;br /&gt;&lt;br /&gt;    $explodestring[0]="JavaScript"&lt;br /&gt;    $explodestring[1]="Equivalent"&lt;br /&gt;    $explodestring[2]="of"&lt;br /&gt;    $explodestring[3]="Explode"&lt;br /&gt;    $explodestring[4]="Function"&lt;br /&gt;&lt;br /&gt;and so on. So how do we do it in JavaScript. In JavaScript there is a split() function that achieves the same objective, although the syntax is a bit different.&lt;br /&gt;&lt;br /&gt;    var string_to_explode="JavaScript Equivalent of PHP Explode Function";&lt;br /&gt;    var explodestring=string_to_explode.split(" "); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now the Array explodestring has all those words such that,&lt;br /&gt;&lt;br /&gt;   explodestring[0]="JavaScript"&lt;br /&gt;   explodestring[1]="Equivalent"&lt;br /&gt;   explodestring[2]="of"&lt;br /&gt;   explodestring[3]="Explode"&lt;br /&gt;   explodestring[4]="Function"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-8157834513647776379?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/8157834513647776379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=8157834513647776379' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/8157834513647776379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/8157834513647776379'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/javascript-equivalent-of-php-explode.html' title='JavaScript Equivalent of PHP Explode Function'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-701543229993538412</id><published>2007-11-19T03:35:00.000-08:00</published><updated>2007-11-19T03:37:49.735-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AJAX'/><title type='text'>Getting Started with Javascript and DOM</title><content type='html'>I find Javascript is one of those languages that every man has heard about, but not many people know how to use it very well. &lt;a href="http://www.talkphp.com/showthread.php?p=3702#post3702"&gt;&lt;br /&gt;View Getting Started with Javascript and DOM Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-701543229993538412?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/701543229993538412/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=701543229993538412' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/701543229993538412'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/701543229993538412'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/getting-started-with-javascript-and-dom.html' title='Getting Started with Javascript and DOM'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-5077440133939846237</id><published>2007-11-19T03:24:00.000-08:00</published><updated>2007-11-19T03:31:50.797-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='forms'/><title type='text'>How to validate forms with JavaScript</title><content type='html'>This Tutorial help you how to validate forms with javaScript. Before viewing tutorial &lt;a href="validate-forms-javascript-example.zip" title="Zip file - 4kb"&gt;Download the required resources&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.webcredible.co.uk/user-friendly-resources/dom-scripting/validate-forms-javascript.shtml" target='_blank'&gt;View How to validate forms with JavaScript Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-5077440133939846237?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/5077440133939846237/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=5077440133939846237' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/5077440133939846237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/5077440133939846237'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/how-to-validate-forms-with-javascript.html' title='How to validate forms with JavaScript'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-3434463174495082981</id><published>2007-11-19T03:21:00.000-08:00</published><updated>2007-11-19T03:23:11.113-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DHTML'/><title type='text'>What is DHTML?</title><content type='html'>Most web developers don't actually know, or only have a vague idea of what the term means; a consequence of the fact that no official specs or definition have ever been issued. &lt;a href="http://www.yourhtmlsource.com/javascript/dhtmlexplained.html"&gt;View More&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-3434463174495082981?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/3434463174495082981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=3434463174495082981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3434463174495082981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3434463174495082981'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/what-is-dhtml.html' title='What is DHTML?'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-3809821819189110520</id><published>2007-11-19T03:18:00.000-08:00</published><updated>2007-11-19T03:20:08.773-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DHTML'/><title type='text'>: A Web Site on a single Dynamic HTML file</title><content type='html'>This method uses 'overlays' which are DIVs, that are styled and filled to create the site content. The visibility and positioning of these DIVs is the primary work of the developer. To accomplish this successfully requires a substantial development editor, because the resulting HTML file, along with the script, will be BIG! Five thousand lines of source code is to be expected. If the development environment is weak, one will crash and burn quite easily. &lt;a href="http://www.javascriptkit.com/javatutors/dynlay/index.html"&gt;View Dynamic Overlay Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-3809821819189110520?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/3809821819189110520/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=3809821819189110520' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3809821819189110520'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3809821819189110520'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/web-site-on-single-dynamic-html-file.html' title=': A Web Site on a single Dynamic HTML file'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-3916872892436588141</id><published>2007-11-19T03:10:00.000-08:00</published><updated>2007-11-19T03:13:38.595-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Date and Time'/><category scheme='http://www.blogger.com/atom/ns#' term='Calendars'/><title type='text'>Create an Analog Clock on your Website Using Javascript</title><content type='html'>Learn how you can create an Analog Clock on your website using javaScript. &lt;a href="http://www.bytemycode.com/snippets/snippet/418/" target='_blank'&gt;View Create an Analog Clock on your Website Using Javascript Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-3916872892436588141?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/3916872892436588141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=3916872892436588141' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3916872892436588141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/3916872892436588141'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/create-analog-clock-on-your-website.html' title='Create an Analog Clock on your Website Using Javascript'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-4083093093718260406</id><published>2007-11-19T03:04:00.000-08:00</published><updated>2007-11-19T03:08:41.421-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Date and Time'/><category scheme='http://www.blogger.com/atom/ns#' term='Calendars'/><title type='text'>JavaScript Digital clock</title><content type='html'>In this article we are going to design a JavaScript based Digital Clock. Here we are see use a HTML Form to show our Digital Clock. &lt;a href="http://www.techxcel.com/content/view/55/29/" target='_blank'&gt;View JavaScript Digital clock Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-4083093093718260406?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/4083093093718260406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=4083093093718260406' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/4083093093718260406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/4083093093718260406'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/javascript-digital-clock.html' title='JavaScript Digital clock'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-7923436829608585562</id><published>2007-11-19T03:01:00.000-08:00</published><updated>2007-11-19T03:03:45.485-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript Buttons'/><title type='text'>Fading Button</title><content type='html'>Move your mouse over the button and watch it fade to another color and then fade back to original color once you move your mouse down. The message on the button will even change after you click on it! &lt;a href="http://javascript.internet.com/buttons/fading-button.html"&gt;View Fading Button Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-7923436829608585562?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/7923436829608585562/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=7923436829608585562' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/7923436829608585562'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/7923436829608585562'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/fading-button.html' title='Fading Button'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-5262562129281159693</id><published>2007-11-19T02:46:00.000-08:00</published><updated>2007-11-19T02:59:05.055-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript Buttons'/><title type='text'>Windows Buttons</title><content type='html'>Make you website button same as your windows buttons &lt;a href="http://javascript.internet.com/buttons/windows-buttons.html"&gt;View Windows Buttons Tutorials&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-5262562129281159693?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/5262562129281159693/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=5262562129281159693' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/5262562129281159693'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/5262562129281159693'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/windows-buttons.html' title='Windows Buttons'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-1502469378588240487</id><published>2007-11-19T02:36:00.000-08:00</published><updated>2007-11-19T02:38:51.165-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AJAX'/><title type='text'>Creating your own AJAX live preview display simialr to digg</title><content type='html'>Very similiar to digg's. Alright, this is pretty cool as well as simple. &lt;a href="http://totaldream.org/article/120-creating_an_ajax_live_preview_display.htmlhttp://totaldream.org/article/120-creating_an_ajax_live_preview_display.html"&gt;View Ajax Live Preview Display&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-1502469378588240487?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/1502469378588240487/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=1502469378588240487' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/1502469378588240487'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/1502469378588240487'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/creating-your-own-ajax-live-preview.html' title='Creating your own AJAX live preview display simialr to digg'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777491815138466471.post-6234494635452734998</id><published>2007-11-19T02:24:00.000-08:00</published><updated>2007-11-19T02:30:23.821-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AJAX'/><title type='text'>How to create a complete website entirely from Ajax</title><content type='html'>This tutorial will tell you how to apply ajax to make a website completely in ajax. It isn't required to know how to use ajax for this tutorial and you could probably apply it without knowing javascipt either. The focus is on the application of ajax to make a website with it. &lt;a href="http://www.quantumstate.co.uk/ajax.html" target='_blank'&gt;View Create Website in Ajax Tutorial&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2777491815138466471-6234494635452734998?l=online-javascript-tutorials.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://online-javascript-tutorials.blogspot.com/feeds/6234494635452734998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2777491815138466471&amp;postID=6234494635452734998' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/6234494635452734998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777491815138466471/posts/default/6234494635452734998'/><link rel='alternate' type='text/html' href='http://online-javascript-tutorials.blogspot.com/2007/11/how-to-create-complete-website-entirely.html' title='How to create a complete website entirely from Ajax'/><author><name>Salman</name><uri>http://www.blogger.com/profile/17275893258757103316</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
