Javascript examples for jQuery Method and Property:mousedown
Cursor changes on mouse down and mouse move
<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>