Re: [jquery-dev] jQuery.each(nodeList, ...)

2009-11-25 Thread John Resig
Commented on the changeset. --John On Wed, Nov 25, 2009 at 4:47 PM, Robert Katić wrote: > Now that jQuery.makeArray(nodeList) is supported correctly, maybe it > is wanted to make that also for jQuery.each, jQuery.map and > jQuery.grep. > > There are mainly two reasons why I think it is worth o

[jquery-dev] jQuery.each(nodeList, ...)

2009-11-25 Thread Robert Katić
Now that jQuery.makeArray(nodeList) is supported correctly, maybe it is wanted to make that also for jQuery.each, jQuery.map and jQuery.grep. There are mainly two reasons why I think it is worth of consideration: 1. $.each(nodeList) is already possible and I suppose that there are individuals tha

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
It works now that I have updated to the latest jQuery. On Nov 25, 1:13 pm, Justin Meyer wrote: > it might be the qunit file that is blocking it. > > On Nov 25, 12:56 pm,JustinMeyer wrote: > > > > > Only sizzle runs for some reason.  Likely b/c I am using windows. > > Does this work for someone el

[jquery-dev] Re: serializeArray and select boxes - odd behaviour

2009-11-25 Thread Rafal Zarajczyk
Hi! I recently came across the same problem. It seems that IE8 sets 'selected' attribute for all options in select-boxes by default to false. Assume you have a select-box: 1 When you load the page, obviously this select will be visible and the first (default) option will be selected. And in

Re: [jquery-dev] Re: append with multiple text nodes crashes IE7

2009-11-25 Thread Kelvin Luck
On Wed, 25 Nov 2009 13:53:36 -, Dave Methvin wrote: >> I've just run into a problem where running append and passing in more >> than one item of text causes IE7 to completely crash (IE8 gives a JS >> error and FF works fine). > > Yep, it's reported here: > > http://dev.jquery.com/ticket

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
it might be the qunit file that is blocking it. On Nov 25, 12:56 pm, Justin Meyer wrote: > Only sizzle runs for some reason.  Likely b/c I am using windows. > Does this work for someone else using msysgit?  Here's the output: > -

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
Should qunit be listed in .git/config? http://pitupepito.homelinux.org/?p=24 says that submodules should be listed there. On Nov 25, 12:56 pm, Justin Meyer wrote: > Only sizzle runs for some reason.  Likely b/c I am using windows. > Does this work for someone else using msysgit?  Here's the outpu

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
Only sizzle runs for some reason. Likely b/c I am using windows. Does this work for someone else using msysgit? Here's the output: -- $ make Grabbing external dependencies... Submodule 'src/sizzle' (git://github.com/jeresig/sizzl

Re: [jquery-dev] NEW! jQuery CKEditor Plugin v0.10

2009-11-25 Thread Gabriel Harrison
Great job! Love the full screen and collapsable tool bar bits. Would love to have the option to easy install more fonts to the list. There are so many better platform specific monospaced fonts than courier. Menlo, Bitstream, Consolas, etc... I know you've put the safe fonts on the list but can we a

[jquery-dev] NEW! jQuery CKEditor Plugin v0.10

2009-11-25 Thread Diego A.
NEW! jQuery CKEditor Plugin v0.10 http://www.fyneworks.com/jquery/CKEditor/ It's been a while but hey, I've finally done it. I've just released the very first version of my new CKEditor plugin for jQuery. I only started working on it today, but soon enough I hope to turn it into a complete interf

[jquery-dev] Re: Plugin development question

2009-11-25 Thread "Cowboy" Ben Alman
I'd love to help, but I have absolutely no idea what you're trying to do! I'd recommend starting with working code, then figure out how to organize and generalize it. - Ben On Nov 25, 4:04 am, Lukáš wrote: > Hey, > > so after some time I decided to look into plugin creation. Since for > some tim

[jquery-dev] Re: append with multiple text nodes crashes IE7

2009-11-25 Thread Dave Methvin
> I've just run into a problem where running append and passing in more than   > one item of text causes IE7 to completely crash (IE8 gives a JS error and   > FF works fine). Yep, it's reported here: http://dev.jquery.com/ticket/4011 The fix is pretty easy; in jQuery.clean just change this: va

[jquery-dev] Plugin development question

2009-11-25 Thread Lukáš
Hey, so after some time I decided to look into plugin creation. Since for some time I was forced to load up to 30 different variables from inputs, so I created a function that would read all the data from one instead of multiple inputs. So now I tried to reform it into a plugin. The problem starts

[jquery-dev] append with multiple text nodes crashes IE7

2009-11-25 Thread Kelvin Luck
Hi, I've just run into a problem where running append and passing in more than one item of text causes IE7 to completely crash (IE8 gives a JS error and FF works fine). Simplified test containing this code: $('#test').append('hello', ' ' , 'world'); Here (note it will crash IE7): http://ww