issue225.html 419 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <title>Index page</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
  6. <script src="js/jquery-1.6.2-min.js"></script>
  7. </head>
  8. <body>
  9. <button id="btn">Créer un compte</button>
  10. <div id="panel"></div>
  11. <script type="text/javascript">
  12. $('#btn').click(function () {
  13. $('#panel').text('OH ' + 'AIH!');
  14. });
  15. </script>
  16. </body>
  17. </html>