A.$("img[src$=jpg]") B.$("img[src^=jpg]") C.$("img[src=jpg]") D.$("img[src*=jpg]")
A.$("input[type=radio]:checked") B.$("input:checkbox") C.$("input[checkbox]:disabled") D.$("input[type=checkbox]:checked")
A.$("<p>") B.$("p") C.document.createElement("p") D.$("<p></p>")