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.
Using this selectors we can select all the controls as well using a symbol (* )
A SAMPLE code snippet can be of this form

<script LANGUAGE="javascript" type="text/javascript"> $("*").css("border", "10px red"); </script>

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.
Using this selectors we can select all the controls as well using a symbol (* )
A sample code snippet can be of this form



Discussion

No Comment Found