I am trying to use shadowbox 3.0.3 in google chrome
I get:
in chrome
shadowbox.js: 17 Uncaught TypeError: Cannot read the 'style' property from undefined
in firefox
F undefined g.find = (function () {var aD = / ((?: ((?: (... ()}}; g.skin = k; T.Shadowbox = g}) (window); shadowbox .js (line 17)
seems to work fine in IE
My code is below:
<!doctype html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script> <script src="shadowbox.js"></script> <link href="shadowbox.css" rel="stylesheet"/> <script> $(function() { Shadowbox.init({skipSetup: true}); </script> </head> <body> </body> </html>
what would it cause?
source share