These days most of my projects are done in .Net with MVC. In order to get the pages to work properly I need to write a lot of javascript and jQuery. I decided to take a course from Benchmark Learning to help me improve my skills with it. Here is a list of the resources I am using to improve my skills.
Benchmark course: Mastering jQuery
Tutorials from the jQuery website
Free online fundamentals book by Rebecca Murphey
Hottest questions about jQuery on StackOverflow
CSS Selectors
In CSS, selectors are patterns used to select the element(s) you want to style.
The “CSS” column indicates in which CSS version the property is defined (CSS1, CSS2, or CSS3).
Selector | Example | Example description | CSS |
---|---|---|---|
.class | .intro | Selects all elements with | 1 |
#id | #firstname | Selects the element with id=”firstname” | 1 |
* | * | Selects all elements | 2 |
element | p | Selects all
elements |
1 |
element,element | div,p | Selects all
elements and all
elements |
1 |
element element | div p | Selects all
elements inside elements |
1 |