Hi everyone! This is kinda a Jquery question, but I think you guys can help, because the problem comes from me using PHP...
I have a php file as my main site's index.php, that has jquery and other .js files included.
When I loaded new HTML data from other PHP files into DIVs within the site, do I need to include those same .js files?
for some reason, in those PHP files that I load in different DIVS (on click events etc), none of their
$(document).ready(function(){
functions work. on the
$(document).ready(function(){
function from the index.php.
Would I have to add all the ready functions into the first master php file?
Thanks guys!!!