
je souhaite afficher un bouton qui reste en bas de page lors du scrolling.
ce script fonctionne sous IE mais reste fixe sous FF.
<!--deb -->
<IMG ALT="Revenir au menu" STYLE="position:absolute;top:200;left=85%;"
ONCLICK="location.href='menu-ff.html';" NAME="imag" SRC="menu-but.gif"
WIDTH="60" HEIGHT="70"> <SCRIPT TYPE="text/Javascript">
//———————————————————————
function bouge() //—— replace l'image ——
//———————————————————————
{ imag.style.top = document.body.scrollTop+document.body.clientHeight-100; }
bouge();
window.onscroll=bouge;
</SCRIPT>
Quelqu'un pourrait il m'aider svp ?

l'internaute qui m'a proposé ce script m'a dit :
" dans document.body.scrollTop+document.body.clientHeight-100
ça doit venir de clientHeight que je ne sais pas par quoi remplacer...."
page du test (entre menu et page 1)
http://www.alpine.free.fr/ff/menu-ff.html
merci

Raoulv