[code lang="js"]$("span").text(arr.join(", "));
.change();
$("div:contains('John')").css("text-decoration", "underline");
$("div").slideDown("slow");
$("div").slideUp();
$('li').not(':even').css('background-color', 'red');
$('li.item-a').parent().css('background-color', 'red');
$(this).css("border", "2px red inset").filter(".middle").css("background", "yellow").focus();
$("div").css("background", "#b4b0da").filter(function (index) {
return index == 1 || $(this).attr("id") == "fourth";
}) .css("border", "3px double red");</pre>
[/code]