Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 14th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Simple jquery image rollover
  2. $('.thumbnail').mouseover(function() {
  3.     var currentimg = $('this').attr('src');
  4.     $('#imageMain img').attr('src', currentimg);
  5. });
  6.        
  7. $('this').attr('src');
  8.        
  9. $(this).attr('src');
  10.        
  11. $(".thumbnail").hover(function(){
  12.     $(this).toggleClass("rollover");
  13. });