jQuery - hover

hover

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">


<div class="adf-Product">
ahoj
</div>

CSS

.active{
    border:2px solid red;
}

JavaScript

$('.adf-Product').hover(function(){
    
    $(this).toggleClass('active');

    });