jQuery routines not working on php dynamically constructed table

jQuery routines not working on php dynamically constructed table

Hello

I've got a php dynamically constructed table in one file: ol_list_ActivityPrivileges.php

In my main file - the table is pulled in through the following script:

  1.     $.getJSON("ol_list_ActivityPrivileges.php", function(data) {
  2.     $('#address_Book').html(data);
  3.     });
The table comes through perfectly, and forms the html just as I figured it would. The problem is when I try to run jQuery listeners on the html elements (such as click event on a button), the jQuery doesn't fire.

Why is this and how do I solve the problem?

Thanks in advance: Pavilion