How can I attach a click event handler to an element inside an iframe?
Here\'s what I tried and doesn\'t work:
$(\"#parent iframe\").contents().find(
Discovered the problem. LIVE does not work inside an iframe. Switching to bind works fine. Will do manual event delegation instead.