How to change the color when mouse passes over an HTML element with JavaScript

1 Answer

0 votes
<!DOCTYPE html>
<html>

<head>  
</head>
  
<body>

<h2 onmouseover="style.color='green'" onmouseout="style.color='black'">
Test on mouse over event</h2>

</body>
</html>

 



answered Aug 27, 2015 by avibootz
edited Aug 27, 2015 by avibootz

Related questions

...