jquery select element inside a class
If you require both classes on the DIV
:
$("div.response.content a.showlist");
If not,
$("div.response a.showlist");
To learn more about basic usage of jQuery Selectors, visit http://api.jquery.com/category/selectors/
Any anchor in a div with "response" and "content" classes:
$('.response.content a')
Or only anchors with a class of "showlist":
$('.response.content a.showlist')