Salut tout le monde,
J'ai trouvé un script sur le net qui doit supprimer la toolbar d'IE mais lorsque j'exécute une page, celle ci se ferme.
Voici la fonction js:
function notoolbar(){
if(window.name!='nouveau'){
window.open(window.top.location.href,'nouveau',
'width='+(parseInt(screen.width)-10)+',height='+screen.height+
',top=0,left=0,toolbar=no') ;
window.opener=self;
self.close() ;
}
}
Merci de votre aide ;)