[jQuery] Re: Form plugin asynchronous behavior

2009-06-09 Thread Dutch
Are you using php sessions? The start session call blocks untill the other script finishes. Script A: - session_start(); - do stuff for 30 sec Script B: - session_start(); // waits 30 secs untill Script A releases the session - do stuff for 2 sec Suggestion solution: Script A: -

[jQuery] Re: Plug-in to display (overlay) DIV element on the page at all times?

2009-06-09 Thread waseem sabjee
on this note of z-index whenever i use an asp.net control ( the dropdown list ) it always appears over my absolutely position element. regardless of z-indexes. this error is occuring only on IE7 ie6, ie8, ff, safari, chrome is fine. just IE7 is being the deamon. i resolved this by doing a

[jQuery] jQuery broken in FF3.5b99 (Preview)

2009-06-09 Thread benjam
I'm sure support for a beta release is a bad thing to be asking for, but I mostly just want to make sure I'm not going crazy (and to inform the devs of a possible issue). I have the current FF 3.5b99 (Preview Release) and am playing around on a WordPress (v2.7.1) installation on my dev box, and

[jQuery] Loop only handling last item in the array

2009-06-09 Thread psc
I am very new to javascript/jquery so bare with me. I am using this loop code below with a populated array called listarray: for(var i in listarray){ var currententry = listarray[i]; var finalurl=phpscript.php?entry=+currententry;

[jQuery] Re: jquery Validate - send email failing

2009-06-09 Thread philco
Thanks Jorn - there is a test page at www.pinerock.com/contactNEW.php. the php at the head of the page is if ($_REQUEST['name']!=) { $sendTo = 'phi...@thisworldover.com'; $subject = Contact Form Submission; $headers = MIME-Version: 1.0\n; $headers .= Content-type: text/

[jQuery] Superfish Height Question

2009-06-09 Thread PelaLusa
I've adopted Superfish as a menu but would like to find out how to change the height of the header items and the subsequent dropdown items. I am the furthest thing from a CSS expert so explicit instructions about what I should change/add would be highly appreciated! Sincerely, Robert Werner

[jQuery] Re: Form plugin asynchronous behavior

2009-06-09 Thread dann
Wow -- that answer turned out to be both 100% correct and completely off-topic for this forum! Thanks so much Dutch, I'm incredibly glad you happened to spot this post and comment on it. I'd been barking up the wrong tree and don't even want to think about how long it would have taken me to track

[jQuery] Re: Drag Drop to sort categories and post this new sort order to dB?

2009-06-09 Thread huytoan.pc
I think you can make AJAX call everytime user drops an item. Use jquerys' index() method to determine index of the time in the container to update database accordingly. Regards, Toan. On Jun 10, 1:24 am, Erich93063 erich93...@gmail.com wrote: OK so Ive been using jquery for a little bit now

[jQuery] Re: Subversion and Bugtracking

2009-06-09 Thread Eric Martin
Do you need to host it yourself and does it need to be private? If not, how about Project Hosting on Google Code[1]? [1] http://code.google.com/projecthosting/ -Eric On Jun 9, 4:20 am, Paulodemoc paulode...@gmail.com wrote: Someone here would happen to know a good bugtracking system that I

[jQuery] Re: variable manipulation

2009-06-09 Thread huytoan.pc
Hi Narendra, I'm wondering why you use toString() method here? I think 'value_at_' + i would also work fine On Jun 9, 10:09 pm, Narendra sisodiya naren.sisod...@gmail.com wrote: try to use object like this: var myObject={}; var count=10; for(var i=0;icount;i++) {  

[jQuery] Re: Loop only handling last item in the array

2009-06-09 Thread MorningZ
The script is a very dumbed down version of what I'm working on Before you get into any complicated script, you need to grasp the concept of Asynchronous You main mistake is thinking that the loop is going to wait when you make the $.ajax call... *it doesn't*... I don't have the time right

[jQuery] Re: plugins aren't applied on second call

2009-06-09 Thread skunkwerk
thanks Paul, i knew that rule, but didn't realize that was the issue. i just switched to using classes, and its all good now. appreciate it, imran On Jun 9, 3:46 am, Paul Mills paul.f.mi...@gmail.com wrote: Hi, Your HTML is not valid. IDs must be unique - you have used #txtSpin and

[jQuery] Re: jQuery broken in FF3.5b99 (Preview)

2009-06-09 Thread John Resig
It looks like it may have already been fixed: https://bugzilla.mozilla.org/show_bug.cgi?id=496790 Thanks for the heads-up, though! --John On Tue, Jun 9, 2009 at 6:09 PM, benjambenjamwel...@gmail.com wrote: I'm sure support for a beta release is a bad thing to be asking for, but I mostly

[jQuery] Superfish - solid background

2009-06-09 Thread Rafael Vargas
Hello, which is the setting (and where can I find it) to make the background of a Superfish dropdown menu solid? I like the settings from A very basic superfish menu example but I can't see where to override the color. To remove the shadow is easy, but I would like the background to be solid.

[jQuery] Re: Loop only handling last item in the array

2009-06-09 Thread RobG
On Jun 10, 7:44 am, psc petercar...@gmail.com wrote: I am very new to javascript/jquery so bare with me. I am using this loop code below with a populated array called listarray:         for(var i in listarray){ Don't use for..in to iterate over an Array, it can be problematic unless you

<    1   2