jQuery - Basics

The jQuery object has an a alias of $.


jQuery.ajax();
.. is the same as...
$.ajax();

var orderForm = document.getElementById("order-form");
… is the same as…
var orderForm = $("#order-form");