Facebook
From Eratic Motmot, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 229
  1. <html>
  2.  
  3.         <head>
  4.                 <meta charset="utf-8" />
  5.                 <script>
  6.                         function zmien_kwadrat()
  7.                         {
  8.                                 var k=document.getElementById("kwadrat");
  9.                                 if (k.style.backgroundColor=="red")
  10.                                 {
  11.                                         with (k.style)
  12.                                         {
  13.                                                 backgroundColor="yellow";                      
  14.                                                 width="200px";                 
  15.                                                 height="200px";                
  16.                                         }
  17.                                 }
  18.                                 else
  19.                                 {
  20.                                         with (k.style)
  21.                                         {
  22.                                                 backgroundColor="red";                 
  23.                                                 width="400px";                 
  24.                                                 height="400px";                
  25.                                         }
  26.                                 }
  27.                         }
  28.                 </script>
  29.         </head>
  30.        
  31.         <body>
  32.                 <div id="kwadrat" style="background-color:red;width:400px;height:400px;" onclick="zmien_kwadrat();">                   
  33.                 </div>
  34.         </body>
  35.