Manage this page

1. Display

2. Feedback

Satya - Wednesday, April 13, 2005 5:11:03 PM

What does the following code do?

(script for=window event=onload)
HandleEvent("Disable", false);
(/script)

Satya - Wednesday, April 13, 2005 5:13:08 PM

Another tutorial on Javascript

VOODOO'S INTRODUCTION TO JAVASCRIPT

Originally looked at for understanding events

Satya - Wednesday, April 13, 2005 5:14:24 PM

Javascript 1.2 event model

Borrowed from the above reference

Satya - Wednesday, April 13, 2005 5:27:03 PM

More event handling information for Microsoft

1. A seires of chapters

2. Expalins the for and the event tags on the script node

Satya - Wednesday, April 13, 2005 5:28:10 PM

More on event handling from Microsoft msdn

Understanding the Event Model

Satya - Wednesday, April 13, 2005 5:47:24 PM

Javascript ref from Sun

Client-Side JavaScript Reference

Satya - Friday, April 15, 2005 11:30:31 AM

Here is one example of capturing an entery key

Sample code for capturing an enter key

Satya - Friday, April 15, 2005 11:32:40 AM

How come captureEvents is not being recognized

Somehow this method is not being recognized in my browser. Is it because of a difference in javascript level? Find out why these methods are not available on the window or document object when the documentation says they are

Satya - Thursday, May 12, 2005 6:06:44 PM

Nice link on javascript functions and function objects

On functions and function objects

Satya - Saturday, May 14, 2005 12:47:48 PM

How to fire an event programmatically

   checkBoxObject.fireEvent("onchange");   

Satya - Saturday, May 14, 2005 12:49:09 PM

Creating an event programmatically

var evt = document.createEventObject();
evt.target = selectObject;
selectObject.fireEvent("onchange", evt);

Satya - Saturday, May 14, 2005 12:51:55 PM

Nullifying an event for a form element

//Save the current on change event function
var submitFunction = selectObject.onchange;

//Nullify the event
selectObject.onchange = null;

//Call the function if you want to
submitFunction();

Satya - Saturday, May 14, 2005 12:54:50 PM

More java script stuff

More notes on javascript

Satya - Tuesday, May 17, 2005 3:43:19 PM

It is tricky walking through a set of tables and its rows

Apparently the tr is not a child element of a table object, nor does children supported by non microsoft browsers (largely). Read along if you need more information

Satya - Tuesday, May 17, 2005 4:05:24 PM

Converting strings to numbers

A quick reference

Satya - Monday, May 23, 2005 2:30:15 PM

Escape characters in html

Reference 1: Contains both the visual symbol and the code

Reference 2: From w3.org, contains textual description of the characters

3: Desmonstrates the percent sign version as well

Search Google for it

Satya - Tuesday, May 24, 2005 2:08:32 PM

How to nullify a style element

Is it a null value or an empty string? Or is there such a thing at all?

Satya - Sunday, May 29, 2005 12:52:07 PM

Another cheatsheet for designing pages

Common html elements such as fonts/colors etc

Satya - Wednesday, November 30, 2005 11:39:31 AM

How to read browser settings through jscript

using client capabilities in ie

Satya - Wednesday, November 30, 2005 11:57:16 AM

Browser hawk: what is detectable

Browser hawk faq to know what is detectable

Satya - Wednesday, January 04, 2006 5:01:36 PM

How to detect which button is clicked

from w3c schools

Satya - Friday, February 17, 2006 1:08:04 PM

How do I go back or forward using history

Reference url

history.back();
history.forward();
history.go(-1);

Satya - Friday, February 17, 2006 1:20:32 PM

Align a paragraph to the right

style="text-align:right;"

Satya - Friday, March 03, 2006 4:37:43 PM

Replacing a plus sign

var newvalues = values.replace(/\+/g,"%2B");

Satya - Saturday, March 18, 2006 9:08:27 AM

How do I know the cursor position in a text field?

Looks like one has to understand the createRange function and text selections in general.

Here are some notes on TextRange object

Satya - Saturday, March 18, 2006 9:11:41 AM

More on TextRange

Microsofts docs on TextRange

Satya - Saturday, March 18, 2006 9:32:04 AM

Using the textrange object

Using the text range object from microsoft

Satya - Saturday, March 18, 2006 10:34:14 AM

How to get the cursor position

Sample code for getting the cursor position