.disableSelection() 1.6 追加 1.9 非推奨
マッチした要素集合のテキスト選択を無効にします。
.disableSelection()
戻り値:jQuery
サンプル
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>position demo</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
<style>
</style>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
</head>
<body>
<p id="disable-selection">
このテキストは選択できません。
</p>
<p>
このテキストは選択可能です。
</p>
<script>
$(function(){
$('#disable-selection').disableSelection();
});
</script>
</body>
</html>
© 2010 - 2017 STUDIO KINGDOM