Archive

Archive for the ‘Navigation’ Category

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:


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: