Hello
I'm doing an http request of one page, and when that page loads the javascripts on that page don't work.
theres anyway to fix this?
my request code is:
Code:
function replace<?php echo $row_rs_anos['id']; ?>() {
http.open("GET", "simple_accordions_with_src/Basic.html", true);
http.onreadystatechange=function() {
if(http.readyState == 4) {
document.getElementById('foo').innerHTML = http.responseText;
}
}
http.send(null);
}
anyone can help me?