When one of the divs inside 'uploadChoice' is clicked, how can I ascertain which one is clicked? Can I return an 'eq' value somehow?
<div id=uploadChoice>
<div>Text</div>
<div>Image</div<
<div>Text & Image</div>
</div>
$("#uploadChoice div").click(function(){
//insert code here! :)
});