[jQuery] How to enable jquery in a loaded page?
Hi there,
I am having a problem to enable jquey in a loaded page.
For example:
base.php has jquery and i load showContent.php like:
$(document).ready(function() {
$("#show").click(function() {
$("#content").css("overflow-y", "scroll");
$("#content").load("showContent.php");
});
but now the jquery in showContent.php doesn't work.
if i directly browse to showContent.php the jquery does work
Any tips?