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
Satya - Wednesday, April 13, 2005 5:27:03 PM
More event handling information for Microsoft
Satya - Wednesday, April 13, 2005 5:28:10 PM
More on event handling from Microsoft msdn
Satya - Wednesday, April 13, 2005 5:47:24 PM
Javascript ref from Sun
Satya - Friday, April 15, 2005 11:30:31 AM
Here is one example of capturing an entery 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
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 - 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 - 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
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
Satya - Wednesday, November 30, 2005 11:39:31 AM
How to read browser settings through jscript
Satya - Wednesday, November 30, 2005 11:57:16 AM
Browser hawk: what is detectable
Satya - Wednesday, January 04, 2006 5:01:36 PM
How to detect which button is clicked
Satya - Friday, February 17, 2006 1:08:04 PM
How do I go back or forward using history
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.
Satya - Saturday, March 18, 2006 9:32:04 AM
Using the textrange object
Satya - Saturday, March 18, 2006 10:34:14 AM
How to get the cursor position