Haven't come up with much as far as documentation goes. How do I find an element with a particular class name that also has a specified attribute value.?
function go_to_page(page){
$('.page_link[longdesc=page]').addClass('.active_page');
}
I got the example from here. Tried testing it myself and it didn't seem to work.