Hi,
I am trying to link from one part of the page to another using a href links.
<div id="something">
<div class="toolbar">
<h1>Product information</h1>
<a class="button back" href="#">Back</a>
<a class="button slideup" href="#product">+</a>
</div>
<div>
<a href="#product" rel="external"><img class="content" src="Dress1.jpg" title="Pic1"/></a>
</div>
</div>
<div id="product">
<div class="toolbar">
<h1>Product</h1>
<a class="button back" href="#">Back</a>
</div>
<div>
<img class="content" src="Dress2.jpg" title="Pic1"/>
</div>
</div>
when i click on the picture Dress1 in #something it should go to #product and stay there until instructed otherwise. unfortunately straight away its going back to #something
Does anyone know whats wrong?
What it does: I'm using JQTouch (hence the animations -button slide up etc) and all I want is that one image appears on the screen (something part of the page) and once its clicked the product part of the page appears.
Thanks! C.
Btw im using Safari!