Skip to Content
JavaScript: The Definitive Guide, 6th Edition
book

JavaScript: The Definitive Guide, 6th Edition

by David Flanagan
May 2011
Intermediate to advanced
1093 pages
40h 54m
English
O'Reilly Media, Inc.
Content preview from JavaScript: The Definitive Guide, 6th Edition

Name

ConsoleCommandLine — global utilities for the console window

Synopsis

Most web browsers support a JavaScript console (which may be known by a name like “Developer Tools” or “Web Inspector”) that allows you to enter individual lines of JavaScript code. In addition to the normal global variables and functions of client-side JavaScript, the console command line typically supports the useful properties and functions described here. See also the Console API.

Properties

readonly Element $0

The document element most recently selected via some other feature of the debugger.

readonly Element $1

The document element selected before $0.

Methods

void cd(Window frame)

When a document includes nested frames, the cd() function allows you to switch global objects and execute subsequent commands in the scope of the specified frame.

void clear()

Clear the console window.

void dir(object o)

Display the properties or elements of o. Like Console.dir().

void dirxml(Element elt)

Display an XML or HTML-based representation of elt. Like Console.dirxml().

Element $(string id)

A shortcut for document.getElementById().

NodeList $$(string selector)

Return an array-like object of all elements matching the specified CSS selector. This is a shortcut for document.querySelectorAll(). In some consoles, it returns a true array rather than a NodeList.

void inspect(any object, [string tabname])

Display the object, possibly switching from the console to a different tab of the debugger. The second argument is an optional hint about how ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

JavaScript: The Definitive Guide, 5th Edition

JavaScript: The Definitive Guide, 5th Edition

David Flanagan

Publisher Resources

ISBN: 9781449393854Errata PageSupplemental Content