Try it !!!
<HTML>
<HEAD>
<title>Cool Mouse Trail</title>
<style>
.spanstyle
{
COLOR: black;
FONT-FAMILY: Verdana;
FONT-SIZE: 8pt;
FONT-WEIGHT: bold;
POSITION: absolute;
TOP: -50px;
VISIBILITY: visible
}
</style>
<SCRIPT LANGUAGE=”JavaScript”>
<!– Begin
var x, y;
var step = 10;
var flag = 0;
var message = “Iin Dewi Wahyuni !!!”;
message = message.split(“”);
var xpos = new Array();
for (i = 0; i <= message.length – 1; i++)
{
xpos[i] = -50;
}
var ypos = new Array();
for (i = 0; i <= message.length [...]
Arsip untuk ‘Javascript’ Kategori
Javascript Cool Mouse Trail !!!
Diposkan dalam Javascript pada Juli 17, 2007 | Leave a Comment »
Ajax Basic Object
Diposkan dalam Ajax, Javascript pada Juli 17, 2007 | Leave a Comment »
Ajax is stand for Asynchronous Javascript and XML.
The question is what kind of javascript’s object that has been use for making Ajax object ? as we know that outside, there is a lot of Ajax object that has been made. Like MagicAjax, Atlas, etc.
The answer is HttpObject in javascript. The existing HttpObject until now is [...]
Two Mode Currency Format
Diposkan dalam Javascript pada Juli 17, 2007 | Leave a Comment »
Two Mode Currency Format is a format that has two mode, 1. Replace mode s a mode that has fixed format (masking) which is the character will replaced by character of keystroke. So the value will not increase.2. Non replace mode is a mode that will put the pointer in a fixed position so when [...]
How to prevent non numerical keystroke in Javascript
Diposkan dalam Javascript pada Juli 17, 2007 | Leave a Comment »
First we described which character that allow to enter in TextBox (_allowChar). We put the e.keyCode which is represent the keystroke in a variable _keycode, then we put the unescape of keystroke in a variable char, then we will find the keystroke character in a variable _allowChar using indexOf functionality. We check is it the [...]