Ever feel like some days you can crank out amazing looking designs with little effort? Then on other days it feels like nothing is working, you’ve lost all your talent and you’ll never make another good design for the rest of your miserable life? Don’t panic – this is natural. how do you avoid designer’s [...]
We can also prevent copy of text also, by using following code
<!– This for prevent not select text
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function (“return false”)
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
–>