When i click on a radio button, a new div, "resultat3" shown.
I want an automatic scroll down to the new div, when it is loaded.
function stateChanged7()
{
if (xmlhttp.readyState==4)
{
document.getElementById("resultat3").innerHTML=xmlhttp.responseText;
document.getElementById("show").innerHTML = showDiv4(1);
}
}
Does anyone know how I can solve it?