InterviewSolution
Saved Bookmarks
| 1. |
How are windows, tabs, iframes, and frames treated according to client-side javascript?(a) They are all browsing contexts(b) They are all browsing information(c) They are all Window contexts(d) They are all Window objects |
|
Answer» Correct choice is (a) They are all browsing contexts To elaborate: Client-side JavaScript makes very little distinction between windows, tabs, iframes, and frames they are all browsing contexts, and to JavaScript, they are all Window objects. |
|