Novice Needs Help With jquery
Hi,
This is my first week using javascript!!! Already I need help.
I have a jcarousel on the site Im working on at the moment and that works fine.
When I click either my left or right arrow the images move from side to side as expected.
What I'm trying to figure out what to do is when the arrow is clicked, as well as moving the pictures I want to change text in my left content div.
-
<div id="body-left">
<div id="left-content">
<!--updated text />-->
</div>
</div>
<div id="body-wide">
<div id="loading" class="wide"><img src="images/spinner.gif" /></div>
<div id="mycarousel" >
<?php include("includes/images-all.php") ?>
</div>
</div>
Here is the images-all file
-
<ul>
<li>
<div class="body-right">
<img width="805" height="432" src="images/1.jpg" alt="" />
</div>
</li>
<li>
<div class="body-right">
<img width="805" height="432" src="images/2.jpg" alt="" />
</div>
</li>
<li>
<div class="body-right">
<img width="805" height="432" src="images/3.jpg" alt="" />
</div>
</li>
<li>
<div class="body-right">
<img width="805" height="432" src="images/4.jpg" alt="" />
</div>
</li>
</ul>
I'm sure theres a very simple solution to this but like I said I'm a big a novice as they come so I need to reach out a little
