Javascript examples for Browser Object Model:Window getComputedStyle
Get computed style
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript"> window.onload=function(){/*from ww w .j a va2s . c o m*/ console.log(window.getComputedStyle(document.getElementById("im1")).display)); } </script> </head> <body> <textarea id="im1">Test</textarea> </body> </html>