Test 1 - Finding an element by ID

A - Using the ID selector

$('#d-2642').html()

B - Using attribute search

$('[id="d-2642"]').html()

C - Using attribute search + tag

$('small[id="d-2642"]').html()

Test 2 - Finding an element by Class

A - Using the class selector

$('.p-4781').html()

B - Using the class selector + tag

$('p.p-4781').html()

C - Using attribute search + tag

$('p[class="p-4781"]').html()

D - Using tag search + filter

$('p').filter('.p-4781').html()

Test 3 - Finding an element by Attribute Value

A - Using attribute search

$('[row="c-3221"]').html()

B - Using attribute search + tag

$('p[row="c-3221"]').html()

C - Using tag search + filter

$('p').filter('[row="c-3221"]').html()

D - Using (tag + attribute) search + filter

$('p[@row]').filter('[row="c-3221"]').html()