Questo tool deve stare nella posizione in basso a destra della pagina sempre pertanto ho pensato di usare la funzione position:fixed.
Questo è il css.
Codice: Seleziona tutto
#ancora_top {
background-attachment: scroll;
background-color: #424443;
background-repeat: no-repeat;
border: medium none;
border-radius: 4px;
bottom: 20px;
color: #ffffff;
font-weight: bold;
height: 50px;
line-height: 12px;
padding: 9px;
position: fixed;
right: 10px;
text-align: center;
visibility: hidden;
width: 50px;
z-index: 10000;
}Codice: Seleziona tutto
<a id="ancora_top" href="#" onclick="smoothScrollTo(0, 500)">
<span class="glyphicon glyphicon-arrow-up" aria-hidden="true"></span>
<em>top</em>
</a>Per info, la versione di IE è la 11 mentre quella di firefox è 37.0.2

