I am trying to load my 36 sequence of images .But i am facing a problem in loading all images.I need to know where i went wrong ...here is my code.....
<script type='text/javascript' language="javascript">
$(function () {
var arr = [];
for (var x = 01; x <= 10; x++) {
arr.push("Images" + x + ".gif");
```
}
$("#mousemove"). three sixty({ images: arr, method: 'mousemove', 'cycle': 3, direction: "backward" });
});
</script>
how to solve it and please help me what i need to do to load all my images
I am trying to load my 36 sequence of images .But i am facing a problem in loading all images.I need to know where i went wrong ...here is my code.....
<script type='text/javascript' language="javascript"> $(function () { var arr = []; for (var x = 01; x <= 10; x++) { arr.push("Images" + x + ".gif"); ``` } $("#mousemove"). three sixty({ images: arr, method: 'mousemove', 'cycle': 3, direction: "backward" }); }); </script>