jQuery select vs créer une syntaxe

// jQuery: Selecting vs Creating an Element

$("div");	// SELECT A DIV ELEMENT

$("<div>");	// CREATE A DIV ELEMENT
KostasX