fork download
  1. $('#menu li').hover(
  2. function(over) {
  3. $(this).css('background-color', '#FFF');
  4. $(this).find('a').css('color', '#AAA');
  5. },
  6. function(out) {
  7. $(this).css('background-color', '#AAA');
  8. $(this).find('a').css('color', '#FFF');
  9. }
  10. );
Runtime error #stdin #stdout 0.29s 213248KB
stdin
Standard input is empty
stdout
Standard output is empty