Add a class on hover with jQuery

jQuery(document).ready(function($){

	//rollover 
    $( ".box" ).hover(
    function() {
      $( this ).addClass( "box-over" );
    }, function() {
      $( this ).removeClass( "box-over" );
    });

});
Scroll to Top