University of Bridgeport

$("ul/li") - get all li elements that are part of a ul: $("p.mypara[img]") - get all paragraphs, with a class of 'mypara', that have an image in them: $("li[a:contains('shop')]") - get list item that contains link with "shop" text inside $("input[name=txtUsername]").val(); - read text from txtUsername input field. ................
................