It appears that the .children portion of the code either isn't getting the .ajax_link classes, or the click handler isn't getting correctly applied. Is there a way to determine what the actual results returned are by the following:
$(this).children('.ajax_link') i tried something like: var kids = $(this).children('.ajax_link'); alert(kids); but that printed out that the 'kids' output was an object. i replaced the children section with the following (it looks to be working correctly now) to grab all of the ajax_link classes, but i'd still like to know what i was doing wrong w/ the above as well, as i feel like the above is a little clearer: $(".ajax_link").click(my_click); thanks for your help and patience btw. i love open source software (and the help you can get implementing things), and jquery ROCKS! -ray On Dec 13, 9:34 am, brian <bally.z...@gmail.com> wrote: > On Fri, Dec 12, 2008 at 4:30 PM, ray <rayjohnterr...@gmail.com> wrote: > > > I've implemented the changes you've suggested, but I'm seeing the same > > issue (clicks are not being intercepted by JQuery). :-/ I do > > understand what you suggested, but I'm now very confused as to why it > > isn't working. > > Post some code? > > > Is there a way to see, at the current time, what links have the click > > handler attached correctly? > > Maybe somewhere in Firebug's DOM info. I've never looked for that, > specifically.