Manage this page

1. Display

2. Feedback

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

VOODOO'S INTRODUCTION TO JAVASCRIPT

Originally looked at for understanding events

Borrowed from the above reference

1. A seires of chapters

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

Understanding the Event Model

Client-Side JavaScript Reference

Sample code for capturing an enter key

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

On functions and function objects

   checkBoxObject.fireEvent("onchange");   
var evt = document.createEventObject();
evt.target = selectObject;
selectObject.fireEvent("onchange", evt);
//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();

More notes on javascript

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

A quick reference

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

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

Common html elements such as fonts/colors etc

using client capabilities in ie

Browser hawk faq to know what is detectable

from w3c schools

Reference url

history.back();
history.forward();
history.go(-1);
style="text-align:right;"
var newvalues = values.replace(/\+/g,"%2B");

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

Here are some notes on TextRange object

Microsofts docs on TextRange

Using the text range object from microsoft

Sample code for getting the cursor position