[jQuery] Re: function running 2X

2009-07-29 Thread marksimon
Got it. Thanks all. I was calling it twice. Fixed that and it's fine now. On Jul 29, 12:12 pm, Brett Ritter wrote: > On Wed, Jul 29, 2009 at 3:03 PM, marksimon wrote: > > > Still getting 2 alerts. > > You show your .click() function in another...is that wrapping function > getting called more th

[jQuery] Re: function running 2X

2009-07-29 Thread Brett Ritter
On Wed, Jul 29, 2009 at 3:03 PM, marksimon wrote: > > Still getting 2 alerts. You show your .click() function in another...is that wrapping function getting called more than once? If so, the action is getting bound more than once. -- Brett Ritter / SwiftOne swift...@swiftone.org

[jQuery] Re: function running 2X

2009-07-29 Thread John Resig
How many times is clickcharges called? Perhaps you're binding a click more than once. --John On Wed, Jul 29, 2009 at 3:03 PM, marksimon wrote: > > Still getting 2 alerts. > > On Jul 29, 11:49 am, Eric Garside wrote: > > Pretty sure its because the event is bubbling up. Try: > > > > $('#cardcha

[jQuery] Re: function running 2X

2009-07-29 Thread marksimon
Still getting 2 alerts. On Jul 29, 11:49 am, Eric Garside wrote: > Pretty sure its because the event is bubbling up. Try: > > $('#cardcharges td').click(function(){ > alert('execute once'); > return false; > > }); > > On Jul 29, 2:38 pm, marksimon wrote: > > > no stupid ideas here, but changing

[jQuery] Re: function running 2X

2009-07-29 Thread Eric Garside
Pretty sure its because the event is bubbling up. Try: $('#cardcharges td').click(function(){ alert('execute once'); return false; }); On Jul 29, 2:38 pm, marksimon wrote: > no stupid ideas here, but changing to $(#cardcharges td).click( didn't > fix the problem. > > On Jul 29, 11:22 am, András

[jQuery] Re: function running 2X

2009-07-29 Thread marksimon
no stupid ideas here, but changing to $(#cardcharges td).click( didn't fix the problem. On Jul 29, 11:22 am, András Csányi wrote: > 2009/7/29 marksimon : > > > > > Any idea why this would run twice: > > function clickcharges() { > >        $('#cardcharges tr td').click(function() { > >        al

[jQuery] Re: function running 2X

2009-07-29 Thread András Csányi
2009/7/29 marksimon : > > Any idea why this would run twice: > function clickcharges() { >        $('#cardcharges tr td').click(function() { >        alert('execute once'); > >         }); > } Stupid idea, but maybe... Because the td tag is part of the tr. And if you click the cell once means tha