Hi All,
this is the first time ive ever used jQuery and im trying to manipulate a slider that ive downloaded into a template. I dont know if i can do this but my slider is set up with items for example:
1.
<div class="oneByOne_item">
2.
<span class="ob1_title">
3.
Multiple layouts
4.
</span>
5.
<span class="ob1_description">
6.
Tyrum in modo invenit iuvenem quasi plena violatam videt.
7.
</span>
8.
<span class="ob1_button">
9.
<a href="#" class="default_button">
10.
Get it now</a>
11.
</span>
12.
<img src="images/assets/1.png" class="ob1_img_device1" alt="" />
13.
</div>
14.
<div class="oneByOne_item">
15.
<span class="ob1_title">
16.
Unlimited skins
17.
</span>
18.
<span class="ob1_description">
19.
Hesterna studiis ascende meae in rei civibus in lucem.
20.
</span>
21.
<span class="ob1_button">
22.
<a href="#" class="default_button">
23.
Get it now</a>
24.
</span>
25.
<img src="images/assets/4.png" class="ob1_img_device1" alt="" />
26.
</div>
27.
I presume this item tag is a jQuery thing as ive never seen it before.
Id like to add a menu over the slider which link to the items ie:
1.
<ul>
2.
3.
<li class="tab1"><div class="content-and"><a href="#1">First</a>
4.
</div></li>
5.
<li class="tab2"><div class="content-and">
6.
<a href="#2">Value</a>
7.
</div></li>
8.
<li class="tab3"><div class="content-and">
9.
<a href="#3">Core</a>
10.
</div></li>
11.
<li class="tab4"><div class="content-and">
12.
<a href="#4">Growth</a>
13.
</div></li>
14.
15.
</ul>
Can you advise me how i call an "item" with a href or
is there a work around
Thanks for your help
Rich