/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function roll_over() { $(".foot_box, .foot_box3").hover( function() { //RollOver this.src = this.src.replace("_off","_on"); }, function() { //RollOut this.src = this.src.replace("_on","_off"); } ); }