jQuery Selector fundametals
jQuery Selector :- jQuery selector work as a CSS selector . CSS selector is used to add style to the HTML Page while jQuery selector is used to add behaviors to the HTML Page. Selecting Elements by JavaScript Selecting Elements by jQuery document.getElementsByTagName(“p”)[0].innerHTML = “Change the page.”; $(“p”).html(“Change the page.”); for (i = 0; i …