Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Derek Etnyre http://www.dereketnyre.com

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Set Cursor to Hourglass

// Sets Mouse Cursor to Hourglass using Javascript

//Set cursor to hourglass
document.body.style.cursor = "wait";
//Turn hourglass off
document.body.style.cursor = "default";

Get Current Server Name from URL using Javascript in Domino Web Application

// Get the Current Server Name from the URL using Javascript for Domino Web Applications

//Get Server
loc1 = location.href;
in1 = loc1.indexOf(".nsf") + 4;
var server1 = Left(loc1,in1);

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS