Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Azadi Saryev
gt; andy > > -Original Message- > From: Josh Nathanson [mailto:p...@oakcitygraphics.com] > Sent: Friday, November 13, 2009 12:20 PM > To: cf-talk > Subject: RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in > IE! > > > You might get a ta

RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Josh Nathanson
dUsers. andy -Original Message- From: Josh Nathanson [mailto:p...@oakcitygraphics.com] Sent: Friday, November 13, 2009 12:20 PM To: cf-talk Subject: RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE! You might get a tad bit more speed if you do this in your selectors: $

RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Andy Matthews
--Original Message- From: Eric Cobb [mailto:cft...@ecartech.com] Sent: Friday, November 13, 2009 12:48 PM To: cf-talk Subject: Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE! I'm not sure if you guys are following what I'm trying to do I want to dynamic

RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Andy Matthews
From: Josh Nathanson [mailto:p...@oakcitygraphics.com] Sent: Friday, November 13, 2009 12:20 PM To: cf-talk Subject: RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE! You might get a tad bit more speed if you do this in your selectors: $("table.stripe>tbody>tr.o

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Charlie Griefer
On Fri, Nov 13, 2009 at 10:47 AM, Eric Cobb wrote: > > I'm not sure if you guys are following what I'm trying to do > > I want to dynamically hide/display certain table rows when a checkbox is > selected/deselected. > No, I was with ya. I recognized that the question had to do with table s

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
> Sent: Friday, November 13, 2009 6:26 AM > To: cf-talk > Subject: Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in > IE! > > > Yeah, after tinkering with it a little more I realized what I was trying > to do would be better with classes instead of ID

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
I'm not sure if you guys are following what I'm trying to do I want to dynamically hide/display certain table rows when a checkbox is selected/deselected. -- Thanks, Eric Cobb http://www.cfgears.com Charlie Griefer wrote: > Preference. > > Some people would prefer to not introduce the

RE: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Josh Nathanson
-- Josh -Original Message- From: Eric Cobb [mailto:cft...@ecartech.com] Sent: Friday, November 13, 2009 6:26 AM To: cf-talk Subject: Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE! Yeah, after tinkering with it a little more I realized what I was trying to

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Charlie Griefer
Preference. Some people would prefer to not introduce the extra CFML markup into the HTML markup. The jQuery lets you manipulate the HTML without actually modifying the HTML. That's nice. The CF method will work even if the user has JS disabled. That's nice. Neither is "right" or "wrong". On

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Nicholas Stein
Maybe I am missing something. Why not just to it this way... class="alternaterow"> ...display Nick ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
Yeah, after tinkering with it a little more I realized what I was trying to do would be better with classes instead of IDs. I really didn't want to have to deal with a unique ID for all 500 rows. Anyway, here's my jQuery now: $("#userFilter").click(function(){ // If checked

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Eric Cobb
Thank you Azadi! I figured it was something simple like that. I'll give it a try and let you know how it goes. Azadi Saryev wrote: > your html is not valid: id's are supposed to be unique per page. > chnage that and you'll see ff work fine. > > Azadi Saryev > Sabai-dee.com > http://www.sabai

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-13 Thread Peter Boughton
> I have a (large) table that has a list of > users with IDs of "newUsers" and "oldUsers". This is wrong! Every ID on the page *must* be unique. Use CLASS for common attributes. ~| Want to reach the ColdFusion community with

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-12 Thread James Holmes
Do you have firebug running at the same time? If so, try disabling it. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/11/13 Eric Cobb : > > Oh, the horror to see my beloved FireFox crash repeatedly when trying to > run some jQuery that works flawlessly in

Re: 'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-12 Thread Azadi Saryev
your html is not valid: id's are supposed to be unique per page. chnage that and you'll see ff work fine. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 13/11/2009 06:38, Eric Cobb wrote: > Oh, the horror to see my beloved FireFox crash repeatedly when trying to > run some jQuery that

'Tis a sad, sad day...jQuery kills FireFox but works great in IE!

2009-11-12 Thread Eric Cobb
Oh, the horror to see my beloved FireFox crash repeatedly when trying to run some jQuery that works flawlessly in IE 8! (I thought it was supposed to be the other way around!) Seriously though, I do have a chunk of jQuery that I hope someone here can help me with. Basically, I have a (large)