Archive

Archive for the ‘JavaScript’ Category

Buzzwords

December 31st, 2009

use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as Note Pad or Simple Text) and save (Control-s or Apple-s). The script is yours!!!

<!– TWO STEPS TO INSTALL BUZZWORDS:

1.  Paste the coding into the HEAD of your HTML document
2.  Put [...]

Read More >>

Author: admin Categories: Games & Entertainment, JavaScript Tags:


Optimized Popup

December 31st, 2009

use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as Note Pad or Simple Text) and save (Control-s or Apple-s). The script is yours!!!

<!– ONE STEP TO INSTALL OPTIMIZED POPUP:

1.  Copy the coding into the HEAD of your HTML document  [...]

Read More >>

Author: admin Categories: E-Commerce Tags:


ajax navigation

December 31st, 2009

Paste this code into an external JavaScript file named: ajax_navagation.js

var please_wait = null;

function open_url(url, target) {
if ( ! document.getElementById) {
return false;
}

if (please_wait != null) {
document.getElementById(target).innerHTML = please_wait;
}

if (window.ActiveXObject) {
link = new ActiveXObject(“Microsoft.XMLHTTP”);
} else if (window.XMLHttpRequest) {
link = new XMLHttpRequest();
}

if (link == undefined) {
return false;
}
link.onreadystatechange = function() { response(url, target); }
link.open(“GET”, url, true);
link.send(null);
}

function response(url, target) {
if [...]

Read More >>

Author: admin Categories: Navigation Tags:


Guess-A-Number

December 31st, 2009

Play the JavaScript version of Guess-A-Number. First, select a number range and then try to guess the number the computer has chosen.

Range of numbers

From:

To:

he JavaScript Source: Games: Guess-A-Number Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new [...]

Read More >>

Author: admin Categories: Games & Entertainment Tags:


In-Page Search Option

December 31st, 2009

The JavaScript Source: Navigation : In-Page Search Option

Simply click inside the window below, use your cursor to highlight the script, and copy [Control]+C the script into a new file in your text editor (such as Note Pad) and save [Control+S]. The script is yours!!!
<!– Paste this code into an external JavaScript file named: [...]

Read More >>

Author: admin Categories: Navigation Tags: