$(document).ready(function () { // loader $("#RouteSubmit").click(function (evt) { document.getElementById('RouteSubmit').style.display = "none"; document.getElementById('RouteWaiting').style.display = "block"; }); $("#horaires_arretForm").submit(function (evt) { document.getElementById('HourSubmit').style.display = "none"; document.getElementById('HourWaiting').style.display = "block"; }); }); function addWaitingElement() { // Création de la DIV div = document.createElement("div"); // Création de l'image du bouton img = document.createElement("img"); img.setAttribute("src","/img/default/Page/ajax-loader.gif"); img.setAttribute("alt"," En cours..."); img.setAttribute("width","16"); div.appendChild(img); // Création du texte txt = document.createElement("span"); txt.innerHTML = 'En cours...'; div.appendChild(txt); document.write(div.innerHTML); }