Difference between revisions of "Javascript"
From ThorstensHome
(Created page with "To quickly debug javascript code there is the '''alert''' function. However this requires you to click for every information you get. A quicker way is to write your informatio...") |
Revision as of 11:20, 17 February 2015
To quickly debug javascript code there is the alert function. However this requires you to click for every information you get. A quicker way is to write your information directly onto the site. For example if your window gets resized, output its new size like this:
<html> <script language=javascript> window.onresize = function(event) { document.getElementById("debug").innerHTML=window.innerWidth+"x"+window.innerHeight; } </script> <div id="debug"> Resize your Window to start. </div> </html>
Resize your Window to start.