I am using the jQuery mobile framework; and using the framework, I have a grid structured as follows:
<div style="text-align: center;" class="ui-grid-b">
<div class="ui-block-a">
<a href="lengthDat.html"><img src="images/Longtail.jpg" width="200" height="200"></a>
<p style="display: inline;">Longtail</p>
<a href="longtail_info.html" rel="external" data-inline="true" data-role="button"
data-mini="true" data-iconpos="notext" data-icon="info">Longtail Info</a>
</div>
<div class="ui-block-b">
<a href="lengthDat.html"><img src="images/Northern_Dusky.jpg" width="200" height="200"></a>
<p style="display: inline;">Northern Dusky</p>
<a href="dusky_info.html" rel="external" data-inline="true" data-role="button"
data-mini="true" data-iconpos="notext" data-icon="info">Dusky Info</a>
</div>
<div class="ui-block-c">
<a href="lengthDat.html"><img src="images/Northern_Spring.jpg" width="200" height="200"></a>
<p style="display: inline;">Northern Spring</p>
<a href="spring_info.html" rel="external" data-inline="true" data-role="button"
data-mini="true" data-iconpos="notext" data-icon="info">Spring Info</a>
</div>
.... SNIP 2 ROWS ....
</div>
Now, here is my question. I have all of the images link to the same page, but they are different types of salamanders. I am trying to get which type they click on, so I can use it on the next page (the measurement page).
Any help?