[jQuery] Nightly builds links broken

2007-02-26 Thread Arrix

Requests to
http://jquery.com/src/nightlies/jquery-nightly.js
and
http://jquery.com/src/nightlies/jquery-nightly.pack.js
get a 404 error.

Is there anything wrong or the files are being updated?
--
Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Bug Fix: Animation Flickers

2007-01-31 Thread Arrix

The flicker problem I had has gone. It used to flicker in slideToggle().
Thanks!

On 1/31/07, Brandon Aaron [EMAIL PROTECTED] wrote:


I just checked in a fix for the flickers that have been happening in
the fx module. Anyone that was having problems with flickers in their
animations (mostly in Firefox) please grab the latest from SVN and let
me know if it solves your problems or not.

--
Brandon Aaron

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/





--
Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] jQuery doesn't get along with old Prototype

2007-01-26 Thread Arrix

I'm writing a bookmarklet application using jQuery and it fails with any
page that uses Prototype 1.3.1.
I found that it's Object.prototype.extend that breaks jQuery.
jQuery's extend method gets overwritten after the first call to
jQuery.extend({/**/}).
It's rare to use jQuery and Prototype 1.3.1 together, but it's absolutely
possible that jQuery will coexist with some poorly written code.

Anyway to make jQuery more robust?
Can we check hasOwnProperty() before copying properties inside jQuery.extend
?
Or can we have a black-list to filter out properties that conflict with
jQuery?

--
Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] $(ele).css('height') and $.css(ele, 'height') are different?

2007-01-24 Thread Arrix

html: div id=div1Hello/div

JavaScript: $(function() {
   alert($('#div1').css('height') + ' ' + $('#div1').height() + ' ' +
$.css($('#div1')[0], 'height'));
});

The result is as follows

Firefox:  19px 19 19
Opera:   19px 19 19
IE: auto 19 19

Why is $(ele).css('height') in IE different? Is this a bug or by design?
--
Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] SVN Broken???

2007-01-15 Thread Arrix

I had the same problem. But the online trac browser seems OK.
jquery.comappeared to be unstable last night, some error info was
displayed.

On 1/16/07, Stephen Woodbridge [EMAIL PROTECTED] wrote:


Hi,

Just tried to update update svn got the following:

svn: No repository found in 'svn://jquery.com'


-Steve

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/





--
Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery Group in China

2006-12-18 Thread Arrix

Glad to have jQuery China group. Please let me know when the group is
available.
Besides jQuery documentation translation, we can write tutorials, create
plugins and host jquery based open source projects to help spread and
improve jQuery.

On 12/18/06, guoqiang qian [EMAIL PROTECTED] wrote:


good job!
where is the site?

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/






--
Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Refresh an image with dynamic src URL?

2006-11-14 Thread Arrix
I've experienced problem in IE6 when trying to refresh an image by changing the src attribute. My code looked like this:$('._valCode', divVote).src('../images/validationCode.php?w=50h=17t=' + new Date().getTime());
IE6 would not display the image until I clicked Show Picture in the right click menu. My work around: setTimeout()setTimeout(function(){  $('._valCode', divVote).src('../images/validationCode.php?w=50h=17t=' + new Date().getTime());
 }, 500);Firefox and IE7 don't have such problem.Many IE6 issues can be solved by setTimeout().-- Arrix
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/