[jQuery] Corrupt ajax requests?

2009-06-21 Thread Elias
Suddenly Ajax no longer seems to perform well formatted POST requests. Consider the following call: jQuery.ajax({ type:'POST', dataType:'text', url:'ajax.php', data:({ testParamOne:1, t

[jQuery] strange behavior when using jQuery fadeOut function on element with floated element and absolutely positioned element

2009-04-09 Thread Elias
I am having some strange behavior with the fadeOut function. I asked about it on StackOverflow. If you want, you can see the discussion at http://stackoverflow.com/questions/735292/strange-behavior-when-using-jquery-fadeout-function-on-element-with-floated-eleme . Someone on there mentioned that t

[jQuery] Re: “too much recursion” error in JQuer y 1.3.2

2009-03-13 Thread Elias
Sorry about this. It is not a bug. I just didn't fully understand the new event bubbling behavior. You can see the solution to this problem in case anyone may find it helpful: http://stackoverflow.com/questions/639862/too-much-recursion-error-in-jquery-1-3-2

[jQuery] “too much recursion” error in JQuery 1. 3.2

2009-03-12 Thread Elias
I am trying to make a form with some dynamic behavior. Specifically, I have my inputs in divs, and I would like to make it so when the user clicks anywhere in the div, the input is selected. I was using JQuery 1.2.6 and everything worked fine. However, I upgraded to JQuery 1.3.2 and I am getting

[jQuery] Re: serializeArray problem with IE7

2007-12-19 Thread elias
Alsup" <[EMAIL PROTECTED]> wrote: > Just out of curiosity, does this work? > > var data = $("#editDiv form").serializeArray(); > > Mike > > On Dec 18, 2007 7:55 AM, elias <[EMAIL PROTECTED]> wrote: > > > > > Hi, I have a following probl

[jQuery] serializeArray problem with IE7

2007-12-18 Thread elias
Hi, I have a following problem, FF2 works fine, IE not: I have a form that is written dynamically on page, by dynamically I mean that form html comes from ajax response like this: function getForm() { $.ajax({ url: actionurl,