Do you know any cross-browser methods?
+2
A:
There aren't any way working cross browser (IE is the problem, as always), sorry
marcgg
2009-12-10 09:24:18
I do not believe there is no way.
Ale Anderson
2009-12-10 10:21:46
A:
window.scrollBarWidth = function() {
document.body.style.overflow = 'hidden';
var width = document.body.clientWidth;
document.body.style.overflow = 'scroll';
width -= document.body.clientWidth;
if(!width) width = document.body.offsetWidth - document.body.clientWidth;
document.body.style.overflow = '';
return width;
}
valli
2009-12-10 09:28:40
Does that work well crossbrowser? Under what browser has this code been tested?
marcgg
2009-12-10 09:53:10