[jQuery] Re: Animate using relative %

2009-03-05 Thread John Resig
. After positing this directly to John Resig via twitter I got a response asking me to try: $(‘#myDiv’).animate({top : “-=26%”}); However the object always animates to: “top: 0px” regardless of its starting position, percentage value and the +=, -= notation. Is this a bug or am I missing

[jQuery] Re: Playstation 3

2009-03-23 Thread John Resig
If I remember correctly - the NetFront browser was missing some fairly fundamental features. I don't remember which, off-hand, but it was enough to cause jQuery not even to load. --John On Mon, Mar 23, 2009 at 7:21 AM, Johan johandesi...@gmail.com wrote: jQuery fails on the Playstation 3

[jQuery] Re: Forced bubbling

2009-03-23 Thread John Resig
Why not do: $('#first').click(function(e) { e.preventDefault(); }); --John On Mon, Mar 23, 2009 at 9:20 AM, John Smith master9...@gmail.com wrote: I have 2 containers i disabled event bubbling for first container. This is must have $ ('#first').click(function() { return false; }); Now

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread John Resig
Uhhh... why were there like 30 of these submitted to the mailing list? Your email address has now been banned. Please contact me off-list if you wish to rectify the situation. --John On Tue, Mar 24, 2009 at 5:45 PM, InfiniteSkills Support Center i...@infiniteskills.com wrote: This message

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread John Resig
PM, John Resig wrote: Uhhh... why were there like 30 of these submitted to the mailing list? Your email address has now been banned. Please contact me off-list if you wish to rectify the situation. --John

[jQuery] Re: Timing of 1.3.3 release

2009-03-26 Thread John Resig
Why not just use a nightly build? No need to wait for a full release. http://code.jquery.com/nightlies/jquery-2009-03-26.js --John On Thu, Mar 26, 2009 at 9:03 AM, dberthia dave.berthia...@gmail.com wrote: Anybody have any insight into when 1.3.3 might be released? There are a couple of

[jQuery] Re: Form no longer works with upgrade to 1.3.2

2009-03-30 Thread John Resig
Well, without being able to see the form in question - does your page validate? If everything is going into a single input that sounds like a problem with malformed HTML markup. --John 2009/3/30 Kathryn kathry...@gmail.com: I'm working on a web form and had to upgrade to 1.3.2 tonight to

[jQuery] Re: Simple selector not working in 1.3.1 and webkit (safari and chrome)

2009-04-02 Thread John Resig
4, 5:05 am, Javier Martinez ecentin...@gmail.com wrote: Sure! Createdhttp://dev.jquery.com/ticket/4058 Hope there is some easy patch, if not, I will regret to 1.2.6 inmediately :( 2009/2/3 John Resig jere...@gmail.com That's odd. Could you file a bug on this? http://dev.jquery.com

[jQuery] Re: Any benefit to using event.preventDefault() over return false to cancel out an href click?

2009-04-20 Thread John Resig
return false does e.preventDefault() and e.stopPropagation(). --John On Mon, Apr 20, 2009 at 3:20 PM, kgosser kgos...@gmail.com wrote: Just curious if there is a best practice when choosing between $(a).click(function(){   // stuff   return false; }); and $(a).click(function(){  

[jQuery] Re: Jquery 1.3 - Not all selectors work in IE 8?

2009-04-24 Thread John Resig
Interesting. Do you think you could file a bug on this and then post it to the jQuery-dev list? Thanks! http://dev.jquery.com/newticket http://groups.google.com/group/jquery-dev --John On Thu, Apr 23, 2009 at 5:11 PM, giovanni gflam...@gmail.com wrote: I found that certain selectors work in

[jQuery] Re: jQuery 1.3.2 *SLOW* using .class tag selector?

2009-04-29 Thread John Resig
Upgrading is probably safe - it's the engine that'll be in jQuery 1.3.3. --John On Wed, Apr 29, 2009 at 8:35 AM, swalke16 swalk...@gmail.com wrote: I have a situation where I have some HTML I am selecting elements from using the .class tag selector combination using jQuery v1.3.2. I have

[jQuery] Re: Double submitted ajax requests

2009-04-30 Thread John Resig
Do you have Firebug installed? Some versions of Firebug submit requests twice. --John On Wed, Apr 29, 2009 at 5:17 PM, Josh Ain josh@gmail.com wrote: Very intermittently, I am finding ajax requests submitted with jquery are being submitted twice, once with parameters, and once without

[jQuery] Re: jQuery v1.3.2 error

2009-05-14 Thread John Resig
Could you try it with an unminified version of jQuery? That might help a little bit with debugging. --John On Thu, May 14, 2009 at 11:00 AM, Devision c...@e950.lv wrote: Hello. I recently updated my jQuery to 1.3.2 from 1.2.6 and now firebug shows me error: tagName is undefined (jquery.js

[jQuery] Re: Something changed from 1.2.2 to 1.3.2 with hashes

2009-05-20 Thread John Resig
Well, in 1.3.2 it now throws an exception, since the CSS selector # is invalid. If you wish to use that precise technique I'd wrap a try/catch around the jQuery statement to catch the error. --John On Wed, May 20, 2009 at 8:22 AM, madmax019 maxi.karr...@googlemail.comwrote: Hi everyone, I

[jQuery] Re: jQuery broken in FF3.5b99 (Preview)

2009-06-09 Thread John Resig
It looks like it may have already been fixed: https://bugzilla.mozilla.org/show_bug.cgi?id=496790 Thanks for the heads-up, though! --John On Tue, Jun 9, 2009 at 6:09 PM, benjambenjamwel...@gmail.com wrote: I'm sure support for a beta release is a bad thing to be asking for, but I mostly

[jQuery] Re: My messages don't show?

2009-07-27 Thread John Resig
All messages are moderated - so it'll depend heavily upon when we're able to review them. --John On Mon, Jul 27, 2009 at 3:19 PM, Cesar Sanz the.email.tr...@gmail.comwrote: I takes about 3 hrs to display your first message. dunno why - Original Message - From: Jon Jackson

[jQuery] Re: consistently unable to get return false to work, why?

2009-07-27 Thread John Resig
It looks like you're using the old liveQuery plugin. Why not just use .bind() or .live()? --John On Mon, Jul 27, 2009 at 5:11 PM, pedalpete p...@hearwhere.com wrote: So, this isn't related to any one bit of code, but it seems to be a problem I run into almost everytime i need to stop a form

[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 zen...@gmail.com wrote: Still getting 2 alerts. On Jul 29, 11:49 am, Eric Garside gars...@gmail.com wrote: Pretty sure its because the event is bubbling

[jQuery] Re: jquery 1.3.2 error with $(':inp...@name=submit]')???

2009-08-02 Thread John Resig
Just remove the @ and it'll work fine. --John On Sun, Aug 2, 2009 at 12:07 PM, micorreo13 micorre...@gmail.com wrote: I was using jquery-1.2.6 and now, I started to use jquery-1.3.2, and I get my first difference: when I use the wrapped set operation $ (':inp...@name=submit]') with

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-07 Thread John Resig
These are a duplicate of http://dev.jquery.com/ticket/4512 which has been fixed. --John On Fri, Aug 7, 2009 at 4:53 PM, Mondo Libero i...@vincenzoferme.it wrote: Here: http://dev.jquery.com/ticket/4753, and Here: http://dev.jquery.com/ticket/4960 some users send this bug on bug tracker.

[jQuery] Re: IE8 Selector Bug?

2009-08-12 Thread John Resig
It looks similar to the one above, but different. I'll try and check in to them both. gentry - can you file a bug for the issue you found, preferably with a full test case? --John On Wed, Aug 12, 2009 at 2:21 PM, Jeffrey Kretz jeffkr...@hotmail.comwrote: My guess is its related to a problem

[jQuery] Re: IE8 Selector Bug?

2009-08-12 Thread John Resig
am, John Resig jere...@gmail.com wrote: It looks similar to the one above, but different. I'll try and check in to them both. gentry - can you file a bug for the issue you found, preferably with a full test case? --John On Wed, Aug 12, 2009 at 2:21 PM, Jeffrey Kretz jeffkr

[jQuery] Re: jQuery.ready after document has loaded

2009-08-12 Thread John Resig
We just landed some code in the latest nightly versions of jQuery to auto-detect if the page has already loaded. You can try it here: http://code.jquery.com/jquery-nightly.js --John On Wed, Aug 12, 2009 at 5:14 PM, ujamu danab1...@gmail.com wrote: I have developed a FF extension that loads a

[jQuery] Re: Twitter for support?

2009-09-13 Thread John Resig
That sounds about right - hopefully we'll be able to direct them to a forum, eventually (which would be much easier to use, I'd expect, for someone who's using twitter). --John On Sun, Sep 13, 2009 at 2:53 PM, Mike Alsup mal...@gmail.com wrote: Over the past few months I've been fielding an

[jQuery] Re: $(':target') and $(location.hash)

2009-09-24 Thread John Resig
jQuery does not support :target. The only reason why it works in Firefox 3.5 is that it provides a native querySelectorAll method. We would have to have an implementation that works in other browser (FF 3.0, IE 8, etc.) and we don't have that right now. You're welcome to file a ticket asking for

[jQuery] jQuery 1.4 Alpha 1 Released

2009-12-04 Thread John Resig
More details here: http://blog.jquery.com/2009/12/04/jquery-14-alpha-1-released/ --John

[jQuery] jQuery is Moving to a Forum

2010-01-20 Thread John Resig
Hello All - After much deliberation the jQuery team has decided to close down the Google Groups that we've been using for project discussion and move to a unified forum instead. The new forum can be found here: http://forum.jquery.com/ More information about our decision to move can be found

<    1   2   3   4   5   6