InterviewSolution
Saved Bookmarks
| 1. |
How Can You Select All Elements In A Page Using Jquery? |
|
Answer» To select all ELEMENTS in a page, we can use all SELECTORS, for that we need to use *(asterisk symbol). <SCRIPT LANGUAGE="javascript" type="text/javascript"> $("*").css("border", "2px DOTTED red"); </script>To select all elements in a page, we can use all selectors, for that we need to use *(asterisk symbol). |
|