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

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 15  |  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. Works in jsFiddle but not in my Site
  2. $(document).ready(function() {
  3.  
  4.     $('#workclick').click(function() {
  5.     $("#header").height($("#headwrapper").height());
  6.  
  7.     });
  8.     $('#workclick').click();
  9.  
  10.     $('#aboutclick, #contactclick, #introclick').click(function() {
  11.     $("#header").height('0');
  12.     });​ // here
  13. });