Monday, October 13, 2008

Disable Select All in a Web Page

Script to disable select all in a web page
Add the Script in the web page or in a master page.



window.onload = function() {
  document.onselectstart = function() {return false;} // ie
  document.onmousedown = function() {return false;} // mozilla
}







Thanks,
Nitin Sharma