me@helium пре 8 година
родитељ
комит
1667f19674
2 измењених фајлова са 6 додато и 0 уклоњено
  1. 1 0
      static/index.html
  2. 5 0
      static/index.js

+ 1 - 0
static/index.html

@@ -24,6 +24,7 @@
             </select>
         </p>
         <input type='checkbox' id='check1'>
+        <pre id='state' style='background-color: lightgray;'></pre>
         <script src="index.js"></script>
     </body>
 </html>

+ 5 - 0
static/index.js

@@ -66,4 +66,9 @@ var $s = nbInit({
     p1: "para"
 });
 
+document.onchange = function(){
+    $s.state  = "";
+    $s.state  = JSON.stringify($s, null, 4);
+}
+