Selects all elements with the given class.
For class selectors, jQuery uses JavaScript's native getElementsByClassName()
function if the browser supports it.
jQuery( ".class" )
version added: 1.0
Examples:
Finds the element with the class "myClass".
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!doctype html> < html lang = "en" > < head > < meta charset = "utf-8" > < title >class demo</ title > < style > div, span { width: 120px; height: 40px; float: left; padding: 10px; margin: 10px; background-color: #EEEEEE; } </ style > </ head > < body > < div class = "notMe" >div class="notMe"</ div > < div class = "myClass" >div class="myClass"</ div > < span class = "myClass" >span class="myClass"</ span > < script > $( ".myClass" ).css( "border", "3px solid red" ); </ script > </ body > </ html > |
Finds the element with both "myclass" and "otherclass" classes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!doctype html> < html lang = "en" > < head > < meta charset = "utf-8" > < title >class demo</ title > < style > div, span { width: 120px; height: 40px; float: left; padding: 10px; margin: 10px; background-color: #EEEEEE; } </ style > </ head > < body > < div class = "myclass" >div class="notMe"</ div > < div class = "myclass otherclass" >div class="myClass"</ div > < span class = "myclass otherclass" >span class="myClass"</ span > < script > $( ".myclass.otherclass" ).css( "border", "13px solid red" ); </ script > </ body > </ html > |
Please login to continue.