Cancelling select event on div by returning false from event handler - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Div

Description

Cancelling select event on div by returning false from event handler

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!-- w  ww  . j  ava 2  s .  com-->
 <body> 
  <div onselectstart="return false;" ondragstart="return false;">
    try to select me! 
  </div>  
 </body>
</html>

Related Tutorials