puoi fare cosi:

codice:
function add(){ 
http.onreadystatechange=function() 
  { 
  if (http.readyState==4 && http.status==200) 
    { 
showHint();
    } 
  } 
http.open("GET","insert.php",true); 
http.send(); 
}
Leva anche la chiamata al metodo showHint nell'onclick.