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:
- $('.read_more a').click(function(){
- var idd = $(this).attr("href");
- $("#entry_container").load('?p='+idd);
- return false;
- });
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.