JavaScript Change Image on Hover

In this tutorial we will learn How to Change Image on Hover with JavaScript. For this we can use onmouseover and onmouseout events which will execute the JavaScript function to change the image. One JavaScript function is used for both mouseover and mouseout events.

onmouseover event

onmouseover event occurs when mouse hovers over the HTML element, it is also used to trigger the JavaScript function on mouse hover event.

onmouseout event

onmouseout event occurs when mouse moves out of the HTML Tag, it also executes the JavaScript function when mouse moves away.

src property

src property sets or returns the value of the src attribute of the img tag.

HTML Code

HTML Code is given below, we have a img tag with onmouseover and onmouseout events.

<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript Hover Image Change</title>
<style>
.responsive
{
width: 100%;    
}
</style>    
</head>             
<body>
    
<img src="car.jpg" class="responsive" onmouseover="changeImage(1,this)" onmouseout="changeImage(2,this)">    
    
<script src="script.js"></script>    
</body>
</html>

JavaScript Code

Take a look at the JavaScript code, in this code changeImage() function will be executed on both mouse hover and mouse out events. This function will change the image using src property.

Which image is to use depends on the value passed to the function as a parameter.

<script>
function changeImage(x,image)
{
if(x==1)
{
image.src = 'bike.jpg';    
}
if(x == 2)
{
image.src = 'car.jpg';
}
}
</script>

Demo

Video Tutorial

Watch video tutorial on How to Change Image on Hover in JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript