Réponse acceptée !
Si tu ne peux pas toucher HTML tu peux accéder aux boutons par leur tag avec getElementsByTagName("input")[numéro du bouton que tu veux caché parmi tout les imput de la page]
Tu peux alors cacher le bouton avec l'attribut display (fonctionne sous IE, sous les autres navigateur aucune garantie) ou avec l'attribut visibility (attention prend des valeur différentes sous IE et Netscape...)
Voici un exemple:
<html>
<head>
<script>
function hideButton(){
document.getElementsByTagName("input")[0].style.display = "none";
}
</script>
</head>
<body onLoad="hideButton()">
<input type="button">
</body>
</html>
The SMURF
the_little_smurf@yahoo.fr
Enjoy the life, don't waste your time in front of your computer