I can't make it accessible right now. But there's just that one function. When I replaced the actual functionality with the alert, I get the alert twice. There's no other binding--just that single function firing twice.
On Thu, Jan 29, 2009 at 8:25 PM, Ryura <yoyobo...@gmail.com> wrote: > > Sounds like you've bound the event twice. Can we see the whole page? > > On Jan 29, 8:03 pm, brian <bally.z...@gmail.com> wrote: >> both jquery-1.3.1 and 1.2.6 on FF >> >> No beginner here, but I'm absolutely stumped. The following function >> is firing twice. There are no other event handlers involved (and, >> anyway, it's only whatever I put in this function that runs). I've >> found a couple of messages online about similar problems but nothing >> that seems to apply here. >> >> $('#newsletter_posts_list a').click(function(e) >> { >> alert(this.href); >> e.stopPropagation(); >> return false; >> >> }); >> >> The stopPropagation call was the last thing I tried. No dice. >> >> I've checked the rendered source and nothing seems amiss. The links >> have only an href and title. >> >> Please help my sanity!