Slide menu doesn't work

174 Views Asked by At

I'm working on a new header for a website, and my header works perfectly on codepen. You can check it out at:

http://codepen.io/germangallo/pen/eNeKWG

As you may see, if you click on the menu button (categories) it slides a menu that I've done following the steps by callmenick here:

http://callmenick.com/post/slide-and-push-menus-with-css3-transitions

However, when I've tried to make it work at my site, everything is great, but the slider menu doesn't work. I'm new at JavaScript, so I really don't know if the problem is there, and I can't figure out any way to fix the problem.

My site is: http://www.pensarpoker.com/nuevo

1

There are 1 best solutions below

0
Jonathan On

It looks like you script is executing before the dom element is accessible on the page, try adding your slider script to the bottom of the page or wrapping it in a $( document ).ready() if your using jQuery.