Load works but blocks other events

Load works but blocks other events

Hi, I have an error and I don't know how to solve it.

Well I load a page into a div called 'entry_container' for my WP theme and I use this function:

 
  1.   $('.read_more a').click(function(){
  2.         var idd = $(this).attr("href");
  3.    $("#entry_container").load('?p='+idd); 
  4.    return false;
  5.     });

Works fine but then, blocks all events outside this div and dont work any jQuery event like hover, click etc. Shows NULL.

Can someone help?

 

Thanks in advance.