Javascript examples for DOM:Element scrollWidth
Element scrollWidth Property - Using padding, border, scrollbar and margin to show how this affects the scrollWidth and scrollHeight property:
<!DOCTYPE html> <html> <head> <style> #content {/*w w w . j a v a2 s .com*/ height: 100px; width: 100px; background-color: coral; padding: 15px; border: 10px solid black; margin: 10px; overflow: scroll; } </style> </head> <body> <button onclick="myFunction()">Test</button> <div id="content">This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. </div> <p id="demo"></p> <script> function myFunction() { var elmnt = document.getElementById("content"); var y = elmnt.scrollHeight; var x = elmnt.scrollWidth; document.getElementById ("demo").innerHTML = "Height: " + y + "px<br>Width: " + x + "px"; } </script> </body> </html>