HTML:
<div id="wrapper">
<span class="stuff">Content</span>
<span class="stuff">Content</span>
</div>
JQuery:
$(document).delegate("#wrapper > *","click", function(){
//do stuff
}
Above is a short code break out of my structure.
Basically I am trying to provide an click event for the parent and all children.
This seems to work fine in Safari, Chrome, Firefox, and IE 7+. However it doesn't seem to on iOS devices (have not tested android).
Anyone have any idea how to get this to work, or a better approach?
$(document).delegate("#wrapper","click", function(){...}? – Kevin Ennis Dec 7 '11 at 20:55