On click of a url i am opening a php file. In that php file I am trying to change the text inside a <td> tag using
$(document).ready(function(){
$('#test').html("this is test");
});
where #test id the ID of the td. But when the pop up opens its not changing the data inside <td> tag.
How do i initialize jquery?