Availability
DOM Level 2 Range
Synopsis
void collapse(boolean toStart)throws DOMException;
Arguments
toStart
If this argument is true, the method sets the end
point of the range to the same value as the starting point.
Otherwise, it sets the starting point to the same value as the end
point.
Description
This method sets one boundary point of the range to be the same as
the other point. The point to be modified is specified by the
toStart argument. After this method
returns, the range is said to be "collapsed": it
represents a single point within a document and has no content. When
a range is collapsed like this, its collapsed
property is true.
•
Table of Contents
•
Index
•
Reviews
•
Examples
•
Reader Reviews
•
Errata
JavaScript: The Definitive Guide, 4th Edition
By
David Flanagan
Publisher
: O'Reilly
Pub Date
: November 2001
ISBN
: 0-596-00048-0
Pages
: 936
Slots
: 1
This fourth edition of the definitive reference to
JavaScript, a scripting language that can be embedded
directly in web pages, covers the latest version of the
language, JavaScript 1.5, as supported by Netscape 6 and
Internet Explorer 6. The book also provides complete
coverage of the W3C DOM standard (Level 1 and Level 2),
while retaining material on the legacy Level 0 DOM for
backward compatibility.