[jQuery] Re: What does this do?

2009-03-20 Thread jQuery Lover
Gets you the first visible .upsell_feature_module's ID (in id=upcell container). Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Mar 20, 2009 at 5:01 PM, Danjojo dlcac...@gmail.com wrote: Sorry not a quiz... I just am having trouble remembering how I built

[jQuery] Re: What does this do?

2009-03-20 Thread Danjojo
Ok cool, I was wondering, isn't it supposed to return a number? because I am alerting NaN On Mar 20, 8:19 am, jQuery Lover ilovejqu...@gmail.com wrote: Gets you the first visible .upsell_feature_module's ID (in id=upcell container). Read jQuery HowTo Resource  -  

[jQuery] Re: What does this do?

2009-03-20 Thread Danjojo
For clarity: script type=text/javascript src=/includes/jquery.js/script script type=text/javascript //*** for scrolling cart upsells $(document).ready(function(){ $(#scrollLeft).addClass(none); }); /script style media=all type=text/css .none { display: none; } /style

[jQuery] Re: What does this do?

2009-03-20 Thread MorningZ
If you are getting NaN that means not a number, probably meaning your selector isn't valid On Mar 20, 9:07 am, Danjojo dlcac...@gmail.com wrote: For clarity: script type=text/javascript src=/includes/jquery.js/script script type=text/javascript //*** for scrolling cart upsells

[jQuery] Re: What does this do?

2009-03-20 Thread Danjojo
Ok.. I was missing the id=%=intA% on the element. Thanks for the help. It's working in another site now. On Mar 20, 9:29 am, MorningZ morni...@gmail.com wrote: If you are getting NaN that means not a number, probably meaning your selector isn't valid On Mar 20, 9:07 am, Danjojo

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Jeff Fleitz
Boy I feel like a dummy, but I can't even find that line in my jQuery script. I am testing with jQuery 1.1.2 unpacked. Is that what we are talking about? I might be having a similar problem and want to test against that by commenting this out as well, but it helps if you can find it first.

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Dan G. Switzer, II
Jeff, Boy I feel like a dummy, but I can't even find that line in my jQuery script. I am testing with jQuery 1.1.2 unpacked. Is that what we are talking about? I might be having a similar problem and want to test against that by commenting this out as well, but it helps if you can find it

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Try searching for the word connection. I think it only appears a few times. The line is where base AJAX code is. In the 1.1.2 code it's around line #1724... Jim

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Jörn Zaefferer
Dan G. Switzer, II schrieb: Jeff, Boy I feel like a dummy, but I can't even find that line in my jQuery script. I am testing with jQuery 1.1.2 unpacked. Is that what we are talking about? I might be having a similar problem and want to test against that by commenting this out as well, but

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Ⓙⓐⓚⓔ
It is code written by the devil to torture the good and pure of heart! It was a kludge to a firefox version that is no longer supported. It's only still there because it was taken as gospel by the early adopters of jQuery! I'm not a zealot, or calling for a reform, but I can no longer support the

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Dan G. Switzer, II
Jörn, if ( xml.overrideMimeType ) xml.setRequestHeader(Connection, close); I'm still not sure when that is really necessary to set. Could someone summarize the conclusion from this thread? In older Gecko builds v1.0.x, the content length was incorrect unless you passed in the connection

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Ⓙⓐⓚⓔ
But you can!!! beforeSend = function(req){/* any custom evil */} On 4/18/07, Brandon Aaron [EMAIL PROTECTED] wrote: Well said! :) In addition it would be nice if a developer could easily, manually close the connection if for some reason needed too. -- Brandon Aaron On 4/18/07, Ⓙⓐⓚⓔ [EMAIL

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Ian Struble
At the risk of beating a dead horse; a few links to related (and fixed) bugs in other projects (including firefox). The root cause of the hack (Dan just touched on it): https://bugzilla.mozilla.org/show_bug.cgi?id=246651 Message reporting that the above bug was fixed in the 11 Sep 2004 build

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Jeff Fleitz
Yeah, I found that. I was looking for 'transport' instead of 'xml'. I believe I will leave it alone as I don't think it is causing me problems. Thanks all. On Apr 18, 1:37 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Dan G. Switzer, II schrieb: Jeff, Boy I feel like a dummy, but I can't

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-11 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] I like this approach. Could you create an enhancement ticket for this? Done! Ticket #1118 (new feature) http://dev.jquery.com/ticket/1118 Catching up on my email and just wanted to follow up on this

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Erik Beeson
Also - how can I re-compress my source with this modification included? I don't know about your first question, but to answer your second question, google search for javascript packer. You'll find this: http://dean.edwards.name/packer/ Good luck. --Erik

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Dan G. Switzer, II
I vaguely remember there being some issue with older versions of Firefox that this solved, but don't quote me on that. Oddly enough, Ajaxian just had reference to a blog entry that talks about Prototype's fix for this: /* Force Connection: close for older Mozilla browsers to work * around a bug

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Ian Struble
Correct, this was a work around for a pre-1.5 FF issue. My notes on it say see mozilla bug #246651 but I remember thinking that jQuery was using the same work around as another js library (prototype?) and that that project had its own bug to get rid of the work around. I thought I saw that the

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Ⓙⓐⓚⓔ
thank you John, it always bothered me! On 4/10/07, John Resig [EMAIL PROTECTED] wrote: Personally, I think this fix should just be removed - especially considering that we don't even support versions of Firefox, that old, any more. --John On 4/10/07, Dan G. Switzer, II [EMAIL PROTECTED]

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Ian Struble
Ditto :) On 4/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: thank you John, it always bothered me! On 4/10/07, John Resig [EMAIL PROTECTED] wrote: Personally, I think this fix should just be removed - especially considering that we don't even support versions of Firefox, that old, any more.

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Ⓙⓐⓚⓔ
I actually need to override mime type! It was very confusing that the only reference to it was to close the connection! All is well now! But closing the connection still bothers me! On 4/10/07, Ian Struble [EMAIL PROTECTED] wrote: Correct, this was a work around for a pre-1.5 FF issue. My

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Dan G. Switzer, II
John, Personally, I think this fix should just be removed - especially considering that we don't even support versions of Firefox, that old, any more. Perhaps we remove it, but add code there to allow custom headers to be set. That way if someone needs some additional headers set (or needs to

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Aaron Heimlich
On 4/10/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Perhaps we remove it, but add code there to allow custom headers to be set. They should already be able to do that with the beforeSend option[1][2], but your way looks easier [1] http://docs.jquery.com/Ajax#Options [2]

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Dan G. Switzer, II
They should already be able to do that with the beforeSend option[1][2], but your way looks easier [1] http://docs.jquery.com/Ajax#Options [2] http://dev.jquery.com/browser/trunk/jquery/src/ajax/ajax.js#L644 One other benefit with my change, is you could get rid of this line: 637 // Set

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Brandon Aaron
I like this approach. Could you create an enhancement ticket for this? -- Brandon Aaron On 4/10/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: They should already be able to do that with the beforeSend option[1][2], but your way looks easier [1] http://docs.jquery.com/Ajax#Options [2]

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Jörn Zaefferer
Dan G. Switzer, II schrieb: They should already be able to do that with the beforeSend option[1][2], but your way looks easier [1] http://docs.jquery.com/Ajax#Options [2] http://dev.jquery.com/browser/trunk/jquery/src/ajax/ajax.js#L644 One other benefit with my change, is you could get

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Aaron Heimlich
didn't someone post a version jQuery.extend that could act recursively on nested objects? On 4/10/07, Brandon Aaron [EMAIL PROTECTED] wrote: Yeah just like most plugins do with their options. -- Brandon Aaron On 4/10/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Jörn, 462

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Jörn Zaefferer
Brandon Aaron schrieb: Yeah just like most plugins do with their options. Sure, but ajaxSettings are the default options for the ajax method. It seems like a bad idea to me to nest those defaults. // ugly: jQuery.extend(jQuery.ajaxSettings.headers, { myHeader: myValue; } And