I am trying to write a JavaScript function to get the current browser width.
I found this one:
javascript:alert(document.body.offsetWidth);
But its problem that it fail if the body has width 100%.
Is there any other better function or a workaround?
It's a pain in the ass. I recommend skipping the nonsense and using jQuery, which lets you just do $(window).width()
.