xhtml template with google load (jquery, prototype, swfobject...)


/ Published in: HTML
Save to your folder(s)

blank xhtml template from NetBeans 6,9 with load all google AJAX Libraries API


Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  5. <title>TODO supply a title</title>
  6. <script type="text/javascript" src="http://www.google.com/jsapi?key=INSERT-YOUR-KEY"></script>
  7. <script type="text/javascript">
  8. google.load("jquery", "1.4.2");
  9. google.load("jqueryui", "1.8.2");
  10. google.load("prototype", "1.6.1.0");
  11. google.load("scriptaculous", "1.8.3");
  12. google.load("mootools", "1.2.4");
  13. google.load("dojo", "1.4.3");
  14. google.load("swfobject", "2.2");
  15. google.load("yui", "2.8.1");
  16. google.load("ext-core", "3.1.0");
  17. google.load("chrome-frame", "1.0.2");
  18. google.load("webfont", "1.0.4");
  19. </script>
  20. </head>
  21. <body>
  22. <p>
  23. TODO write content
  24. </p>
  25. </body>
  26. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.