I am trying to run the following code written on my local machine:
http://www.jsfiddle.net/WShdx/3/
Functionality (ignore the broken images in the previous and next buttons and the main images of the wrong size) the click / hover function works correctly in jsfiddle. However, it doesnβt work at all on my local machine.
For all purposes, the code is identical, except that the local copy has this section for loading into the javascript / css files contained on 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 great jsFiddle function that does my code magically, or am I not seeing something here?
source
share