All pastes #2122173 Raw Edit

Someone

public text v1 · immutable
#2122173 ·published 2012-02-27 20:58 UTC
rendered paste body
Voici mon code dans la page load.html
--------------------------------------
<script type="text/javascript">
function renderDynamicView(){
  
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("refreshView").innerHTML=xmlhttp.responseText;
 }
}
  
xmlhttp.open("GET","pagejava.html",true);
xmlhttp.send();
}

</script>
<div id="refreshView">Aucun chargement ici</div>
<button type="button" onClick="renderDynamicView()">Charger</button>

 
Voici le code dans pagejava.html
-----------------------------------------
Fichié chargés
<script language="javascript">
alert("hello world");
</script>
--------------------------------