$('.article')
get elements with class name article
Slide 7
Slide 7 text
$('#content')
Slide 8
Slide 8 text
$('#content')
get element with id attribute of content
Slide 9
Slide 9 text
$('.article').each(function() {
// what is diff between
// this and $(this) here
this;
$(this);
});
Slide 10
Slide 10 text
$('.article').each(function() {
// what is diff between
// this and $(this) here
this;
$(this);
});
this is a plain DOM element, $(this) is a DOM
element bestowed with the power of jQuery