Replacing HTML / Manipulating HTML

Replace HTML Code The HTML <div id='status_area1'>THIS WILL BE REPLACED</div><br />   The Javascript document.getElementById("status_area1").innerHTML = "Helle";   Image Source document.getElementById("my_image_id").src = "some_iamge.php";  

Read More