After loading a PHP template (using jQuery's load function), this simple script won't make the DIV go away:
$("#trigger").click(function(event){
$("#removeThisDIV").hide();
The HTML bit:
<p id="trigger">X</p>
Tried to remove other DIVs, before the load -- it works just fine. After the load, the script went dead. Ideas?
Thanks.