Hi, I have a simple list inside a table
<ul class="col_actions"> <li class="cancel_posting"> <a href="/frontend_dev.php/organizer/cancel-booking/20" linkindex="18">Cancel</a> </li> </ul> I have a ready event handler for click events on the anchor: $j('.cancel_posting').click( function(e) { if (!confirm("Are you sure you want to cancel this booking?")) { e.preventDefault(); } }); However, this event doesn't seem to fire because the table has some prototype controls inside it. If I just copy the list outside the table as a test, it seems like the event handler works fine. I am using jquery for all my own code, but some widgets from my PHP framework (symfony) are built in prototype, so I've been using both to some extent. Any ideas about how I can rectify this? Thanks! Steve