Languages
[Edit]
EN

jQuery - mouse hover event example

11 points
Created by:
telsa
502

In this article, we would like to show you how to create a mouse hover event using jQuery.

1. hover method example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
  <div id="element" style="padding: 10px; background: orange;">
    Move mouse over element...
  </div>
  <script>

    $(document).ready(function() {
		var element = $('#element');

        function onMouseOver() {
            element.text('Mose over element...');
        }

        function onMouseLeft() {
            element.text('Mose left element...');
        }
      
      	element.hover(onMouseOver, onMouseLeft);
    });

  </script>
</body>
</html>
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

jQuery

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join