Javascript DOM onkeypress Event via HTML Tag onkeypress attribute

Introduction

This example demonstrates how to assign an "onkeypress" event to an input element.

Press a key inside the text field to set a red background color.

View in separate window

<!DOCTYPE html>
<html>
<body>
<input type="text" id="demo" onkeypress="myFunction()">

<script>
function myFunction() {/*ww  w. j  a  v a 2  s .  c om*/
  document.getElementById("demo").style.backgroundColor = "red";
}
</script>

</body>
</html>
Bubbles:
Cancelable:
Event type:
Supported HTML tags:












Yes
Yes
KeyboardEvent
All HTML elements,
EXCEPT:
<base>,
<bdo>,
<br>,
<head>,
<html>,
<iframe>,
<meta>,
<param>,
<script>,
<style>, and
<title>



PreviousNext

Related