:hover
Pseudo-classYou can simply use the CSS :hover
pseudo-class selector in combination with the jQuery mousemove()
to check whether the mouse is over an element or not in jQuery.
The jQuery code in the following example will display a hint message on the web page when you place or remove the mouse pointer over the DIV element's box.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Check If the Mouse is Over an Element</title>
<style>
div{
margin: 80px;
height: 200px;
background: orange;
}
</style>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function(){
$(document).mousemove(function(){
if($("#myDiv:hover").length != 0){
$(".hint").text("Mouse is Over the DIV Element.");
} else{
$(".hint").text("Mouse is Outside the DIV Element.");
}
});
});
</script>
</head>
<body>
<div id="myDiv"></div>
<p class="hint"><!-- Hint text will be displayed here --></p>
</body>
</html>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Laravel 8 Listen Model Observers Tutorial Example
If you want to listen many events for an...How to randomize the order of an array in PHP
Use the PHP shuffle() function...Laravel 8 Vue JS CRUD Operation Single Page Application
Throughout this Laravel Vue js CRUD exam...How to Build Multi Language App in Vue.js
This is a step by step Vue i18n tutorial...How to Upload a Project on Git
Suppose you are working in a big project...