[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: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread Dave Cardwell
On 20/08/07, Stosh <[EMAIL PROTECTED]> wrote: > Any chance that this might be integrated into the core in a future > version, or something like it perhaps? http://docs.jquery.com/JQuery_1.2_Roadmap#Behaviors -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: ORing selectors

2007-08-18 Thread Dave Cardwell
9ms comma: 76ms .add(): 88ms (I usually run profiling code like this several times as results can 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
;form') && 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 can

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

2007-04-28 Thread Dave Cardwell
ttr.28_name_.29 -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

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

2007-04-28 Thread Dave Cardwell
tted a normal HTML form). How to access these on the server side does depend on your language. I'm not a PHP programmer, but I think 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_

[jQuery] Re: SPAM-LOW: [jQuery] Re: Replacing the contents of a div that uses newsticker plug-in

2007-04-28 Thread Dave Cardwell
you're still experiencing problems, your best best is to post a link to a live page so people can see what is going on. -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/ On 27 Apr 2007, at 15:28, Dave Cardwell wrote: djl wrote: Hi there, I've got a

[jQuery] Re: load image by ajax..how?

2007-04-28 Thread Dave Cardwell
e the image using a normal hidden element. See previous threads: http://groups.google.com/group/jquery-en/search?group=jquery-en&q=image+preload -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: Order in which styles are applied

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

[jQuery] Re: Replacing the contents of a div that uses newsticker plug-in

2007-04-27 Thread Dave Cardwell
t;, self); self.items.not(":eq(0)").hide().end(); self.currentitem = 0; ...where "self" is the news ticker . I believe (i.e. not tested) that if you performed those three lines after the replacement the ticker should continue to function. Let us know how you g

[jQuery] Re: path and selectors

2007-04-27 Thread Dave Cardwell
http://getfirebug.com/lite.html -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: path and selectors

2007-04-27 Thread Dave Cardwell
cted Ask and ye shall receive! http://davecardwell.co.uk/javascript/jquery/plugins/jquery-getpath/ -- Best wishes, Dave Cardwell. http://davecardwell.co.uk/javascript/jquery/

[jQuery] Re: test if element as a class

2007-04-27 Thread Dave Cardwell
ate to true. 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 va

[jQuery] Re: Show and Hide DIV

2007-04-27 Thread Dave Cardwell
r:visible selector, for example if they were in the form: ... ... ... Rather than giving them each a particular class, you'd be better off using $("#someID > div:visible").hide("fast"); -- Best wishes, Dave Cardwell.

[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) Sent: Friday, April 27, 2007 12:14:29 AM Subject: [jQuery] Re: plugin sizes, part 2 Ariel Jakobovits wrote: well, my suggestion is a

[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: Does addClass overwrite property

2007-04-27 Thread Dave Cardwell
.div_active defined after .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/