- Home
- Jquery Examples
- Mousedown Event
jQuery - Mousedown Event
विवरण :
कोई विवरण नहीं है |
सोर्स कोड :
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("div").mousedown(function() { alert("hello"); }); }); </script> </head> <body> <div>Click or mouse down over the text.</div> </body> </html>
आउटपुट :
Click or mouse down over the text.