Hi!
Is posible abort the event onunload of the page?
thx...
more >>
I am using VS2005 to develop web application.
I put a TextBox on the WebPage, it is used for a user to input the height of
a person.
I want to show a confirm dialog if the input data in not in the range of
50..250.
How can I write the JavaScript?
...
more >>
Hi!
I'm sorry my english is not good
I have creating dinamics inputs in this form:
var newInput = document.createElement("input");
newInput.type = "text";
newInput.name = "name";
newInput.value = "1";
This is correct but when i tray to put the events like onkeypress:
newInput.onkey...
more >>
Hope I'm in the correct group for this.
I am attempting to debug JavaScript application in Windows IE6 via the 2005
IDE.
Through the "Debug" menu option, I select "Attach to Process..." and find
the IE process supporting my page in the list and double-click it to attach
to the process. ...
more >>
Hi, all
I am working on a Project ,I use JScript.Net to support it's automation
A question I meeted is "How Can I get Type of a Class?"
eg.
when I call follow code:
Activor.GetObject(Type type, string url)
In C#, I can get it use "typeof(TYPE)"
'type' is method argument, How can I...
more >>
I have came across 3 different ways of creating a structure or class.
1. Class as a function way
// Class Constructor
function Timer(Source) {
// Class Properties
this.timerID = 0;
this.tStart = null;
// Class Methods
this.UpdateTimer = function() {
};
}
// Example
var ti...
more >>