<html>
<head>
<script type="text/javascript">
function msg()
{
alert("onselect event");
}
</script>
</head>
<body>
<p>Select content</p>
<form>
<input type="text" value="Select this text" onselect="msg()" size="20">
</form>
</body>
</html>
<head>
<script type="text/javascript">
function msg()
{
alert("onselect event");
}
</script>
</head>
<body>
<p>Select content</p>
<form>
<input type="text" value="Select this text" onselect="msg()" size="20">
</form>
</body>
</html>
No comments:
Post a Comment