Feeds:
Tulisan
Komentar

Arsip untuk ‘Javascript’ Kategori

Javascript Cool Mouse Trail !!!

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 [...]

Untuk mentranslate bahasa

Ajax Basic Object

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 [...]

Untuk mentranslate bahasa

Two Mode Currency Format

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 [...]

Untuk mentranslate bahasa

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 [...]

Untuk mentranslate bahasa