InterviewSolution
Saved Bookmarks
| 1. |
Which is the property of a Window object that holds the name of the frame?(a) name(b) title(c) description(d) style |
|
Answer» The correct choice is (a) name For explanation: The name property of a Window object holds the name of the frame if it has one. This property is writable, and scripts can set it as desired. An iframe creates a nested browsing context represented by a Window object of its own. |
|