[jquery-dev] Re: Put JS at the bottom

2009-02-15 Thread Klaus Hartl
Check out http://www.stevesouders.com/blog/2008/12/27/coupling-async-scripts/ --Klaus On 16 Feb., 03:08, Kevin Dalman wrote: > @Ian: Thanks a lot for sharing your ideas and code. > > Have you done any benchmarking for how your Ajax loader performance > compares to: > > A) loading the scripts n

[jquery-dev] Re: Namespace failure

2009-02-15 Thread John Resig
Anko - You're welcome to file a bug on XHTML support - let me know when you do. I have it penciled in the Roadmap for jQuery 1.4 - but it's going to require a lot of work (basic things like innerHTML aren't guaranteed to work, for example) - not to mention that things like attributes and expandos

[jquery-dev] Re: What Wiki Software is used for the jQuery docx?

2009-02-15 Thread Daniel Friesen
http://docs.jquery.com/Special:Version ~Daniel Friesen (Dantman, Nadir-Seen-Fire) [http://nadir-seen-fire.com] -Nadir-Point (http://nadir-point.com) -Wiki-Tools (http://wiki-tools.com) -MonkeyScript (http://monkeyscript.nadir-point.com) -Animepedia (http://anime.wikia.com) -Narutopedia (http://na

[jquery-dev] Re: Namespace failure

2009-02-15 Thread Anko Painting
Is there a ticket associated with this bug? I'm dealing with the same issue myself. It's frustrating because i need to serve as application/xhtml+xml so that I can put svg on the page. On Feb 14, 12:52 am, John Resig wrote: > Correct - you have to do it with the mimetype - which forces it in to

[jquery-dev] What Wiki Software is used for the jQuery docx?

2009-02-15 Thread mumbojumbo
Hello, I simply love the jQuery docs and I was wondering what was powering them. I think it may be mediawiki "skinned" but I thought It would be easier to just ask the dev team instead of wildly guessing! Thanks, MJ --~--~-~--~~~---~--~~ You received this messag

[jquery-dev] Re: Put JS at the bottom

2009-02-15 Thread Kevin Dalman
@Ian: Thanks a lot for sharing your ideas and code. Have you done any benchmarking for how your Ajax loader performance compares to: A) loading the scripts normally in the HEAD section; B) loading the scripts 'last' in a 2nd HEAD section at the bottom of the page; C) loading the scripts 'last'

[jquery-dev] Re: Synchronized animations

2009-02-15 Thread weepy
Wow - I was just about to post on the same topic ! Synced animations would be ultra useful for me. I'm writing a Sprite library. I'm using 2 divs, outer with overflow: hidden. This allows me to resize the sprite, but also use transparent png's and the like. It would be great to be able to animate

[jquery-dev] Re: Synchronized animations

2009-02-15 Thread Jörn Zaefferer
I extraced your mockup and tried to apply it the to the accordion: http://jqueryjs.googlecode.com/svn/trunk/plugins/sync-animations/sync-accordion.html It doesn't look like the mockup helps at all with the specific accordion animation problems. I'd appreciate help getting that to work for now (see

[jquery-dev] Re: jQuery problem with "margin-left"

2009-02-15 Thread John Resig
It's been that way for quite some time. I just filed a bug so that we can check it in the future: http://dev.jquery.com/ticket/4156 --John On Sun, Feb 15, 2009 at 9:03 AM, weepy wrote: > > Hi > > I'm finding that animating an element with > > {"margin-left": 100} > > doesn't work > > however

[jquery-dev] jQuery problem with "margin-left"

2009-02-15 Thread weepy
Hi I'm finding that animating an element with {"margin-left": 100} doesn't work however setting with .css works fine as does animating with { marginLeft: 100 } Is this a bug ? (On 1.3.1) --~--~-~--~~~---~--~~ You received this message because you are subscri

[jquery-dev] Re: live event handlers

2009-02-15 Thread Daniel Friesen
$('#foo').live('click', myfunc ) Would have poor performance compared to: $('#foo').bind('click', myfunc ) Live is good in cases where you want to delegate amongst a large number of nodes. If you only have one or two, then it just reduces performance because then the delegated functions get cal

[jquery-dev] live event handlers

2009-02-15 Thread weepy
I recently created a grid with ~1000 squares and each set a click event handler to each. $(".sq").bind("click", myfunc ) Needless to say, it was extremely slow. Thankfully I could simply switch to event delegation and far better performance by simply switching to the following: $(".sq").live("c