Re: [jQuery] Deserialize Plugin

2006-08-20 Thread ashutosh bijoor
Thanks for the fix, Philip! I did not realize that select multiple returns a different type! Interesting thought about the array v/s string... maybe we can do a benchmark test to compare the times taken. Will update the code accordingly... Regards AshutoshOn 8/18/06, Philip Floetotto [EMAIL

[jQuery] jQuery and the geo microformat

2006-08-20 Thread Fil
Hello, I've started a modest blog in French about jQuery, mainly to document what I learn, and show to SPIP users how to use it. So it's mostly constituted of very simple examples and discover articles. My latest article is an example of processing the geo microformat with jQuery. Nothing

[jQuery] Erasing contents of a form

2006-08-20 Thread Bruce MacKay
Hi folks, I use the function below to send user comments to a database and get refreshed on the current page - no problems. However, I cannot seem to erase the contents of the comments form (id=NewCommentZ) for subsequent use - the text area and text input elements remain populated with the

Re: [jQuery] Erasing contents of a form

2006-08-20 Thread kenton.simpson
use .val() on form elements or you could reset the form Bruce MacKay wrote: Hi folks, I use the function below to send user comments to a database and get refreshed on the current page - no problems. However, I cannot seem to erase the contents of the comments form (id=NewCommentZ)

Re: [jQuery] Combining fade and slide

2006-08-20 Thread Brice Burgess
Klaus Hartl wrote: John Resig schrieb: I'm confused as to what you're asking - the chaining works right now. The pre-compiled animations are all queued, meaning that if they're executed, another animation won't begin until the last one has completed --- on that element only! Do you think

[jQuery] Invalid pointer error on IE

2006-08-20 Thread Taku Sano (Mikage Sawatari)
There was a problem that an invalid pointer error occurs. The error occurs only in IE. The error did not occur in the same script in Firefox and Opera either. The problem seems to occur in the following parts when it is [[e.className ==]]. src/jquery/jquery.js has: function(e,a) { if (

Re: [jQuery] jQuery via NNTP @ GMANE

2006-08-20 Thread Matt Stith
im a noob here, how to i access that url?On 8/20/06, Roman Filippov [EMAIL PROTECTED] wrote: Hi everyone,Per my request, jQuery mailing list is now available via NNTP at:nntp://news.gmane.org/gmane.comp.lang._javascript_.jqueryCheers!Yours sincerely,Roman Filippov.

Re: [jQuery] Erasing contents of a form

2006-08-20 Thread Matt Stith
Or do $(formElement).reset(); , that would reset the form to its original state.On 8/20/06, Bruce MacKay [EMAIL PROTECTED] wrote: Hi folks, I use the function below to send user comments to a database and get refreshed on the current page - no problems. However, I cannot seem to erase the

[jQuery] bug in form plugin when form element name is action

2006-08-20 Thread Renato Formato
Hi, when you ajaxSubmit a form with an element whose name is action, the element itself is passed as the url parameter of the load function. The same kind of error should occur if an element name is method. Renato ___ jQuery mailing list

[jQuery] Oddness with jq-corner plugin.

2006-08-20 Thread Jason Huck
I am having trouble getting Dave Methvin's jq-corner plugin to work on a page, and have discovered something very strange. I copied his test page, the corner lib, and the latest jquery to a folder on my local machine and adjusted the paths accordingly. Everything is in the same folder. Now,

Re: [jQuery] Setting AJAX headers, and selecting namespaced nodes

2006-08-20 Thread Jason Huck
Mitchell Lane wrote: This would allow the programmer to set and override their own HTTP headers. That would be a nice addition. Has there been any discussion of having jQuery automatically use: X-Requested-With: XMLHttpRequest ...in the headers of its AJAX calls? There's a few different