There following selectors in jQuery is used as:
$(‘div’) is used for selection all div tags in the document, $(‘#TextId’) is used for selecting elements whose ID is TextId and $(‘.myclass’) is used for selecting all elements whose class is .myclass.
Leave a Reply