Cursor changes on mouse down and mouse move - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:mousedown

Description

Cursor changes on mouse down and mouse move

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> 
  <style id="compiled-css" type="text/css">

div {//from  w ww .j a  va  2 s .c  o m
   background-color: lime;
   height: 100px;
   width: 300px;
   cursor: wait;
   -webkit-user-select: none;
}


      </style> 
 </head> 
 <body> 
  <div></div>  
 </body>
</html>

Related Tutorials