hi,
i'm having this markup:
<a href='#' onclick='loadpage(121);'>
<a href='#' onclick='loadpage(122);'>
<a href='#' onclick='loadpage(123);'>
my question: how can i select the 2nd link object by jQuery using the id 122?
i've tried something like $("a[onclick=loadpage(122)]")
but didn't work.
thx