I’m having difficulty getting some JavaScript features to work in any other browser besides Firefox. I tried Chrome, Safari, IE and they all seem to produce a similar pattern of problems. In particularly when you click each one of the colored bars (try it in Firefox and it’ll work properly), the containers do not open.
I’m having difficulty getting some JavaScript features to work in any other browser besides
Share
You have a number of javascript errors on that page. Use developer tools in Chrome to debug these errors. The one that I’m getting that is most likely your problem is on these pieces of code.
The variable,
content, that you’re using in the.not()is not defined.Looks like you’re probably wanting
$contentfor line 97. For line 78, there is no variable in scope that resembles content, at least as far as I can tell from glancing at your code.