Answers for "update a div immediately with javascript"

7

javascript set text of div

document.getElementById("content").innerHTML = "whatever";
Posted by: Guest on January-17-2020
1

relode div

function updateDiv()
{ 
    $( "#here" ).load(window.location.href + " #here" );
}
Posted by: Guest on April-22-2020

Code answers related to "update a div immediately with javascript"

Browse Popular Code Answers by Language