As you can see in the attached code I am trying to run 2 ajax scripts using body=onload... The second is the only one that loads, for some reason the first will never load if there are two onload request, but they both work perfectly when ran alone..
<script type="text/javascript">function CDRInfo(str){if (str=="") { document.getElementById("content").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); }else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); }xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("content").innerHTML=xmlhttp.responseText; } }xmlhttp.open("GET","cdr_ajax.php?load_cdr_page="+str,true);xmlhttp.send();}</script><script type="text/javascript">function load(str){if (str=="") { document.getElementById("ops").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); }else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); }xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("ops").innerHTML=xmlhttp.responseText; } }xmlhttp.open("GET","operations.php?operation="+str,true);xmlhttp.send();}</script></head><body onload="CDRInfo(1);load()">
var xmlhttp;