I'm new to jquery and have looked around all day but can't resolve what's a very simple idea :)
Here's the test code:
js:
$(document).ready(function(){
$('#transgenic_div').click(function(){
var selected_transgenic_id = $(this).attr("id");
alert(selected_transgenic_id);
});
});
html:
<div id="transgenic_div">
<p><a class="transgenic_button" id="56">item number 56</a></p>
<p><a class="transgenic_button" id="57">item number 57</a></p> etc
</div>
This just gives the alert "tansgenic_div" I'm trying to pass the selected id to another function - but for now just testing with the alert...
