<html lang="en">
<head>
<title>jQuery Add Class On Hover</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<style>
.Mydivadd{
color:#fff;
background:#f98585;
padding:10px;
}
</style>
<script>
$(document).ready(function(){
$("#Divone").hover(function(){
$(this).addClass("Mydivadd");
});
});
</script>
</head>
<body>
<h2>jQuery Add Class On Hover</h2>
<p>Hover over the below text to see the effect</p>
<div id="Divone">This is the div to show add class on hover using jquery</div>
</body>
</html>