I m trying to retrieve the width of an div for my function with javascript:
#areaDraw {
margin-top:50px;
width: 50%;
min-height: 100%;
z-index: 1000;
}
and the function:
Event.add(window, "resize", function() {
sketch.resize(document.getElementById("areaDraw").style.width, window.innerHeight);
}).listener();
somehow javascript always returns 0 for the width of the div(areaDraw)
so whats wrong with:
document.getElementById("areaDraw").style.width
Try document.getElementById("mydiv").offsetWidth
instead of .style.width
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With