scrollTop in defferent browers.
- by zjm1126
shortcut.add("up",function() {
alert( document.body.scrollTop)
if (document.documentElement&& typeof document.documentElement.scrollTop=='number'){
document.documentElement.scrollTop-=100
}
else if (document.body) {
document.body.scrollTop-=100
}
})
shortcut.add("down",function() {
if (document.documentElement&&typeof document.documentElement.scrollTop=='number' ){
document.documentElement.scrollTop+=100
}
else if (document.body) {
document.body.scrollTop+=100
}
})
it can running in firefox,but not in chrome and safari
thanks