hide this
scale font
| Syntax | Description |
|---|---|
| $(this) | Current HTML element |
| $("p") | All <p> elements |
| $("p.intro") | All <p> elements with class="intro" |
| $(".intro") | All elements with class="intro" |
| $("#intro") | The element with id="intro" |
| $("ul li:first") | The first <li> element of each <ul> |
| $("[href$='.jpg']") | All elements with attribute href containing ".jpg" |
| $("div#intro .head") | All elements with class="head" inside a <div> element with id="intro" |
ADD TEXT(innerhtml)