1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
function masquage(){
document.forms[0].style.cursor = 'wait';
document.getElementById('bloc_bouton).style.display='none';
document.getElementById('bloc_bouton_quitter').style.display='none';
document.getElementById('bloc_patienter').style.display='block';
document.getElementById('img_patienter').style.display='block';
}
....
<html:submit property="action" styleClass="bouton" value="<%=Constantes.BTN_VALIDER%>" />
....
<div id="bloc_patienter" >
<div id="img_patienter">
<p><img src="images/attente.gif" alt="image logo Attente" title="Attente Maj" /></p>
</div>
<p>Veuillez patienter pendant la mise à jour . . .<p>
</div> |