InterviewSolution
Saved Bookmarks
| 1. |
Which is not the location object method?(a) stop()(b) reload()(c) assign()(d) replace()The question was posed to me in homework.This question is from Essential JavaScript and jQuery in chapter HTML Tables, Javascript & Jquery Basics of HTML |
|
Answer» RIGHT choice is (a) stop() For EXPLANATION: assign(), REPLACE(), reload() are the location object methods. A new document is loaded by calling assign() method. The CURRENT document is replaced by the new one by calling replace() method. Current document is RELOADED by reload() method. |
|