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()
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()
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()