$('[elementName]')
$('#[IDName]')
$('.[className]')
You can chain multiple selectors in jQuery with a space. Ex: $('.bordered-content .ad-aside')
You can select multiple elements in jQuery using a comma. Ex: $('#main, #secondary')
You can select an element based on attribute by having jQuery search for the specified element, attribute, and value with the following syntax:
To selected based on the status of a checkbox/radio button, one would use the [:checked] syntax. Ex: $('input:checked')
The jQuery Selector returns a jQuery Object wrapped around the element selected. Each time that element is selected , jQuery will make a unique object for that element. jQuery also gives this object access to its library of methods that can now be used to interact with the jQuery object.
Documentation can be found on https://api.jquery.com/
Searching can be confusing on the website. If you know the specific method you are trying to find documentation on, the search bar is easy to use. If you are trying to describe the method you are looking for, it can be more difficult. This is because search results are ordered only by method name.
If you are looking for answers specific to jQuery on google; be sure to use 'jquery' in your search. Also, if at all possible, try to use method names specific to jquery.