InterviewSolution
| 1. |
What Are Selectors In Jquery Mean ? |
|
Answer» Generally in HTML, if we need to work with any control on a web page we need to find the control. For that we use document.getElementByID or document.getElementByName. But in JQUERY we do it using SELECTORS. Generally in HTML, if we need to work with any control on a web page we need to find the control. For that we use document.getElementByID or document.getElementByName. But in jquery we do it using Selectors. |
|