Results 1 - 20 of 20

Console

The Console object provides access to the browser's debugging console (e.g., the Web Console in Firefox). The specifics of how it works vary from browser to browser, but there is a de facto set of features that are typically provided.
API Console console debugging Debugging Interface NeedsCompatTable Reference web console

Console.dirxml()

Displays an interactive tree of the descendant elements of the specified XML/HTML element. If it is not possible to display as an element the JavaScript Object view is shown instead. The output is presented as a hierarchical listing of expandable nodes that let you see the contents of child nodes.
API debugging Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.timeStamp()

Adds a single marker to the browser's Timeline or Waterfall tool. This lets you correlate a point in your code with the other events recorded in the timeline, such as layout and paint events.
API debugging Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.assert()

Writes an error message to the console if the assertion is false. If the assertion is true, nothing happens.
API console Console debugging Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.dir()

Displays an interactive list of the properties of the specified JavaScript object. The output is presented as a hierarchical listing with disclosure triangles that let you see the contents of child objects.
API console console.dir Debugging debugging dir DOM JSON Method NeedsBrowserCompatibility web console Web Development

Console.groupCollapsed()

Creates a new inline group in the Web Console. Unlike console.group(), however, the new group is created collapsed. The user will need to use the disclosure button next to it to expand it, revealing the entries created in the group.
API debugging Debugging DOM DOM Reference Method NeedsBrowserCompatibility Reference web console Web Development

Console.count()

Logs the number of times that this particular call to count() has been called. This function takes an optional argument label.
API Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.group()

Creates a new inline group in the Web Console log. This indents all following output by an additional level, until console.groupEnd() is called.
API Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.info()

Outputs an informational message to the Web Console. In Firefox and Chrome, a small "i" icon is displayed next to these items in the Web Console's log.
API Debugging Method NeedsBrowserCompatibility web console Web Development

Console.time()

Starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call console.timeEnd() with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started.
API console Debugging DOM Method NeedsBrowserCompatibility web console Web Development

Console.timeEnd()

Stops a timer that was previously started by calling console.time().
API console Debugging DOM Method Non-standard web console Web Development