[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-24 Thread Dave Cardwell
On 24/08/07, John Resig [EMAIL PROTECTED] wrote: jQuery 1.1.4 has just been released! Can you Digg it*? http://digg.com/programming/jQuery_1_1_4_Faster_More_Tests_Ready_for_1_2 -- Best wishes, Dave Cardwell. * Sorry!

[jQuery] Re: ORing selectors

2007-08-18 Thread Dave Cardwell
sometimes vary). --- So yeah, ~12ms difference when called 100 times - negligible. It's down to your personal preference I guess. -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] .reset() methods for forms

2007-08-17 Thread Dave Cardwell
') this.reset(); } } }); For a small amount of extra code in the core, people could then reset their forms and carry on the chain ala. $('form').foo().reset().bar(). -- Best wishes, Dave Cardwell http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: Problem with jQEm and scrolling divs on FF

2007-08-16 Thread Dave Cardwell
Nothing seems obvious to me. I'm currently working on a new release of the plug-in that you might have better luck with. It's not polished or fully tested yet, but try http://jquery-em.googlecode.com/svn/trunk/jquery.em.js (the documentation is only available in the source at the moment). You

[jQuery] Re: Difference of $.getJSON versus $get

2007-04-28 Thread Dave Cardwell
you might access them through the $_GET and $_POST arrays. [1]http://en.wikipedia.org/wiki/JSON [2]http://docs.jquery.com/Ajax#.24.getJSON.28_url.2C_params.2C_callback_.29 [3]http://docs.jquery.com/Ajax -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: Newbie -- How to retrieve img src value in function?

2007-04-28 Thread Dave Cardwell
. In that case, you want drag.attr(src). http://docs.jquery.com/DOM/Attributes#attr.28_name_.29 -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: Does addClass overwrite property

2007-04-27 Thread Dave Cardwell
.div1? Normal CSS presedence rules will apply. If this is the case and it still does not work, if you provide an example page we'll be able to locate the problem for you. -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: plugin sizes, part 2

2007-04-27 Thread Dave Cardwell
://openjsan.org) for this purpose was in the pipeline. Is this still the case? -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: plugin sizes, part 2

2007-04-27 Thread Dave Cardwell
Ariel Jakobovits wrote: can you explain what JSAN does? - Original Message From: Dave Cardwell [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Friday, April 27, 2007 12:14:29 AM Subject: [jQuery] Re: plugin sizes, part 2 Ariel Jakobovits wrote: well, my

[jQuery] Re: Show and Hide DIV

2007-04-27 Thread Dave Cardwell
using $(#someID div:visible).hide(fast); -- Best wishes, Dave Cardwell.

[jQuery] Re: test if element as a class

2007-04-27 Thread Dave Cardwell
. To use it your way, you'd want to do if($(this).filter(.selected).length) which will return 0 if there are no elements, or a positive integer if there are. Michael was correct in his example of $(this).is(.classname), which will return a boolean value as required. -- Best wishes, Dave Cardwell

[jQuery] Re: Order in which styles are applied

2007-04-27 Thread Dave Cardwell
should be visible. -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/