Text box selected event : Form TextBox « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- Form TextBox
Text box selected event
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(":input").select( function () {
$("div").text("selected");
});
});
</script>
</head>
<body>
<body>
<input type="text" value="Some text" />
<div></div>
</body>
</html>
Related examples in the same category