|
|
|
jQuery Disable Selection ป้องกันการ Drag Select หรือ Mark ข้อมูลหน้าเว็บไซต์ |
|
|
|
|
|
|
|
Code (JavaScript)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<form name="frmMain" action="" method="post">
<script language="JavaScript">
window.onload = function() {
document.onselectstart = function() {return false;} // for ie
document.onmousedown = function() {return false;} // for mozilla
}
</script>
Disable Text Selection Disable Text Selection Disable Text Selection <br>
Disable Text Selection Disable Text Selection Disable Text Selection <br>
Disable Text Selection Disable Text Selection Disable Text Selection <br>
Disable Text Selection Disable Text Selection Disable Text Selection <br>
</form>
</body>
</html>
อันนี้ JavaScript
<script type="text/JavaScript">
jQuery.fn.disableTextSelect = function() {
return this.each(function() {
$(this).css({
'MozUserSelect':'none',
'webkitUserSelect':'none'
}).attr('unselectable','on').bind('selectstart', function() {
return false;
});
});
};
jQuery.fn.enableTextSelect = function() {
return this.each(function() {
$(this).css({
'MozUserSelect':'',
'webkitUserSelect':''
}).attr('unselectable','off').unbind('selectstart');
});
};
$('body').disableTextSelect();
</script>
|
|
|
|
|
Date :
2011-06-13 21:56:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|