//accutempbr example change image on hover
$("#res-hvac").hover(function(){
$(this).attr("src", function(index, attr){
return attr.replace(".jpg", "-hover2.jpg");
});
}, function(){
$(this).attr("src", function(index, attr){
return attr.replace("-hover2.jpg", ".jpg");
});
});
// Ajax example
$('.btn').click(function() {
$.ajax({
url: '/stats.html',
success: function(data) {
data=$(data).find('.stat-wrap');
$('#content').html(data);
}
});
});