InterviewSolution
Saved Bookmarks
| 1. |
Which is not the method of History object?(a) go()(b) moveBy()(c) forward()(d) back()The question was posed to me in an online interview.The origin of the question is Essential JavaScript and jQuery topic in portion HTML Tables, Javascript & Jquery Basics of HTML |
|
Answer» RIGHT answer is (b) moveBy() To elaborate: There are MAINLY three methods of history object, forward(), BACK() and GO(). The next URL of history list is loaded by calling forward() FUNCTION. The previous URL in the history list is loaded by back() method. A specific URL from history list is loaded by go() method. |
|