index.html 369 B

12345678910111213141516
  1. <html>
  2. <head>
  3. <script type="text/ecmascript" src="/lib/jquery-2.2.1.js"></script>
  4. <script type="text/ecmascript" src="/index.js"></script>
  5. <script type="text/ecmascript">
  6. function sayGoodbye() {
  7. $('#title').html('Goodbye');
  8. }
  9. </script>
  10. </head>
  11. <body>
  12. <h1 id="title" onclick="sayGoodbye();">
  13. Hello</h1>
  14. </body>
  15. </html>