Code working in jsFiddle but not in browser...

Posted by Jascination on Stack Overflow See other posts from Stack Overflow or by Jascination
Published on 2011-01-09T05:42:47Z Indexed on 2011/01/09 5:54 UTC
Read the original article Hit count: 322

Filed under:
|

I'm trying to run the following code, written on my local machine:

http://www.jsfiddle.net/WShdx/3/

Functionality-wise (ignore the broken images in the previous and next buttons, and the wrongly-sized main images) the click/hover function is working properly in jsfiddle. However, on my local machine it's not working at all.

For all intents and purposes the code is identical, except the local copy has this head section to load in the javascript/css files that are contained within the jsfiddle page:

<head>
  <title>Jquery Wizard</title>
  <link href="style.css" rel="stylesheet" type="text/css" />
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  <script src="wizard.js" type="text/javascript" ></script>
</head>

Is there some wonderful function of jsFiddle that is making my code magically work, or am I missing something here?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jsfiddle