/ Published in: jQuery
Expand |
Embed | Plain Text
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"); } ); }
You need to login to post a comment.
