Login Register

Internet Explorer

What browsers does Dojo support?

version:
1.0
  • Latest Safari (currently 3.0.x), 2.0 support was dropped upon the release of Leopard
  • Latest Opera (currently 9.0+) -- (Dijit does not currently support Opera but Dojo Core does)
  • Internet Explorer (Windows) 6.0+
  • Firefox 1.5+/Mozilla (Dijit supports FireFox 2+, though Core works with 1.5+)
  • Konqueror 3.5+ -- (Dijit does not currently support Konqueror but Dojo Core does

What are HTTP monitors and debuggers?

HTTP monitors and debuggers are tools that monitor the HTTP traffic to/from the server; they are essential for ajax debugging.

For Firefox the answer is short, simple, and cannot be understated. http://getfirebug.com

What can I use to inspect the DOM tree?

When you install Firefox, you should select the option for DOM inspector. This tool shows you the DOM tree after the dojo widgets have been expanded. It's indespensible.

There are similar tools for IE. We recommend Microsoft's own Developer Toolbar.

Why does IE report a syntax error when other browsers do not?

version:
all

Perhaps there is an extra comma at the end of a list. For example:

var request = dojo.io.bind({
                url: this.actionURL,
                method: 'get',
                content: {
                        id: this.rowId,
                        field: this.dbField,
                        value: this.checkbox.checked
                }// this comma shouldn't be here!
        });

Or:

var foo = [ 1 , 2, 3, ];

Or:

var obj = {
        apple: "delicious",
        brussel sprouts: "yucky",
};
Syndicate content