onchange Event
Complete Event Object Reference
Definition and Usage
The onchange event occurs when the content of a field changes.
Syntax
onchange="SomeJavaScriptCode"
|
Parameter |
Description |
SomeJavaScriptCode |
Required. Specifies a JavaScript to be executed when the
event occurs. |
Supported by the following HTML tags:
<input type="text">, <select>, <textarea> |
Supported by the following JavaScript objects:
fileUpload, select, text, textarea |
Example
In this example we will execute some JavaScript code when a user changes the
content of an
input field:
<html>
<head>
<script type="text/javascript">
function upperCase(x)
{
var y=document.getElementById(x).value
document.getElementById(x).value=y.toUpperCase()
}
</script>
</head>
<body>
Enter your name:
<input type="text" id="fname"
onchange="upperCase(this.id)">
</body>
</html>
|
The output of the code above will be:
Try-It-Yourself Demos
onchange
How to use the onchange event to execute some JavaScript code when a user
changes the content of
an input field.
Complete Event Object Reference
Learn how your website performs under various load conditions
|
|
WAPT
is a load, stress and performance testing tool for websites and web-based applications.
In contrast to "800-pound gorilla" load testing tools, it is designed to minimize the learning
curve and give you an ability to create a heavy load from a regular workstation.
WAPT is able to generate up to 3000 simultaneously acting virtual users using standard hardware configuration.
Virtual users in each profile are fully customizable. Basic and NTLM authentication methods are supported.
Graphs and reports are shown in real-time at different levels of detail, thus helping to manage the testing process.
Download the free 30-day trial!
|
|