Friendster Court
Disable Select Text/Copy/Drag and Drop Images Fsc10
It seems that you're not registered so pls. do so, but if you're already registered pls. login to use the full support of the forum!
Friendster Court
Disable Select Text/Copy/Drag and Drop Images Fsc10
It seems that you're not registered so pls. do so, but if you're already registered pls. login to use the full support of the forum!
Friendster Court
Would you like to react to this message? Create an account in a few clicks or log in to continue.


We Serves the Ball of Simplicity for your Profile
 
HomeGallerySearchLatest imagesRegisterLog in



Disable Select Text/Copy/Drag and Drop Images

View previous topic View next topic Go down
Author Message
PatRicK
Admin
Admin
PatRicK


Age : 27 Registration date : 2009-01-17 Number of posts : 47

Disable Select Text/Copy/Drag and Drop Images Vide
PostSubject: Disable Select Text/Copy/Drag and Drop Images Disable Select Text/Copy/Drag and Drop Images EmptySat Jan 24, 2009 3:03 pm

Simply compile/paste this code in your JS file

If you don’t know what is JS is, Go to Compiling JS File Tutorial

Code:
Code:
//form tags to omit in NS6+:
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
Back to top Go down
http://profiles.friendster.com/70610066

Disable Select Text/Copy/Drag and Drop Images

View previous topic View next topic Back to top
Page 1 of 1

Permissions in this forum: You cannot reply to topics in this forum
Friendster Court :: Other Stuffs :: Tutorials -