Events/API/jQuery - Sample Code
select(fn)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="/jquery/js/jquery.js"></script>
<script>
$(document).ready(function(){
$(document).select( function () {
$("div").text("Something was selected").show().fadeOut(1000);
});
});
</script>
<style>
p { color:blue; }
div { color:red; }
</style>
</head>
<body>
<p>
Click and drag the mouse to select text in the inputs.
</p>
<input type="text" value="Some text" />
<input type="text" value="to test on" />
<div></div>
</body>
</html>
[実行結果]