Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 11th, 2012  |  syntax: None  |  size: 0.79 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Uncaught ReferenceError: (function) is not defined
  2. <html>
  3. <head>
  4.     <link rel="stylesheet" href="example.css" type="text/css"/>
  5.     <title>CSS TESTS</title>
  6.     <script language="text/javascript">
  7.         var move = 0;
  8.     </script>
  9. </head>
  10. <body>
  11.     <input type="text" id="shape" onchange="alert(move);"/>
  12. </body>
  13. </html>
  14.        
  15. <html>
  16. <head>
  17.     <link rel="stylesheet" href="example.css" type="text/css"/>
  18.     <title>CSS TESTS</title>
  19.     <script type="text/javascript">
  20.         var move = 0;
  21.     </script>
  22. </head>
  23. <body>
  24.     <input type="text" id="shape" onchange="alert(move);"/>
  25. </body>
  26. </html>
  27.        
  28. <html>
  29. <head>
  30.     <link rel="stylesheet" href="example.css" type="text/css"/>
  31.     <title>CSS TESTS</title>
  32. </head>
  33. <body>
  34.     <input type="text" id="shape" onchange="alert('move');"/>
  35. </body>
  36. </html>