<head>
<script type="text/javascript">
// Firefox, Google Chrome, Opera, Safari, Internet Explorer from version 9
function OnInput (event) {
//alert ("The new content: " + event.target.value);
document.form1.submit();
}
// Internet Explorer
function OnPropChanged (event) {
if (event.propertyName.toLowerCase () == "value") {
//alert ("The new content: " + event.srcElement.value);
document.form1.submit();
}
}
</script>
</head>
<body>
<form name="form1" method="post" action="onpropertychenge2.php">
Please modify the contents of the text field.
<input type="text" oninput="OnInput (event)" onpropertychange="OnPropChanged (event)" value="Text field" />
</form>
</body>