Dojo Template
/skill level/
/viewed/
0 Times
Want to get started with the Dojo JavaScript Toolkit? Here's the place to start. This is the blank drawing board for working with Dojo web applications.
The template was written for and used as the blank slate template for our Get Started With Dojo tutorial.
This code is in a wiki. If you want to help others get started with Dojo and know of some good templating tips, add the advice or code changes directly to this wiki page.
What it Does
The template simply loads up some basic Dojo JavaScript directly to the page. There is no working code on the page. This simply gets you started.
The Code
Download the file by right-clicking this link and selecting Save Link As���
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <script type="text/javascript" src="http://o.aolcdn.com/dojo/1.2.0/dojo/dojo.xd.js" djConfig="parseOnLoad: true"></script> <script type="text/javascript"> // JavaScript and Dojo calls will go here </script> <style type="text/css"> @import "http://o.aolcdn.com/dojo/1.2.0/dijit/themes/tundra/tundra.css"; </style> </head> <body class="tundra"> <!-- HTML and Dojo tags will go here--> </body> </html>
- This page was last modified 21:42, 20 October 2008.