[jQuery] Re: fadeTo() possible speeds

2009-09-30 Thread Matt Critchlow
>From the documentation: http://docs.jquery.com/Effects/fadeTo speed String, Number A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). What else are you looking for? You use one of the three Str

[jQuery] Re: jQuery .post function failing in Safari 4.03

2009-09-30 Thread Matt Critchlow
I would first try putting your function call to reloadWindow() in the complete callback for the $.post function. So your post code would look like: $.post( "includes/update.php", { action: "y" }, reloadWindow); and take out the call to reloadWindow() after updateSession() You may have other bac

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Matt Critchlow
An alternative might be to use the fadeTo function and pass in the opacity you want. This worked for me in a very similar case with IE. Just a thought. On Jun 2, 12:45 pm, "Mauricio \(Maujor\) Samy Silva" wrote: > It's hard to figure out what you are trying to do without a test case. > Woulkd yo

[jQuery] Re: Problem with jQuery in Firefox

2009-05-08 Thread Matt Critchlow
obj.find("input[name='plan_price']:radio").click(); //is creating the recursive loop On May 8, 12:59 am, MC Lueppers wrote: > Hi, > > I'm in a development phase of a file sharing portal and I have a > problem with jQuery on the following > page:http://share.home.hive-net.net/pricing. In Firefox

[jQuery] Re: Custom JSON sanitizing during $.ajax

2009-05-07 Thread Matt Critchlow
try changing your parameter in the success method to something other than return and see what happens.. On May 7, 10:40 am, Eli Perelman wrote: > Hello All, > > I am trying to complete an Ajax request in which PHP returns a JSON- > formed string. One of the variables inside the JSON object conta

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
ok: "+ exc +" fn=\n"+fn +"\n stack=\n"; firebug-...ervice.js (line 1952) however in IE i get the following error: Out of memory jquery-1.3.2.js, line 1427 character 2 Which is: context = context || document; On Apr 2, 11:16 am, Matt Critchlow wrote: > I am making a lo

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
ipping the JS > to the point where you only have the code necessary to cause the > error, then you have an useful test-case. > > cheers, > - ricardo > > On Apr 2, 3:33 pm, Matt Critchlow wrote: > > > I should add, sometimes IE gives a stack overflow notice also, but

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
I should add, sometimes IE gives a stack overflow notice also, but again, not on every load() or history plugin pageload() call. In case this triggers anything in anyone's mind. Thanks. On Apr 2, 11:16 am, Matt Critchlow wrote: > I am making a lot of use of jQuery's load method

[jQuery] Re: Too much recusion/Out of Memory

2009-04-02 Thread Matt Critchlow
I am making a lot of use of jQuery's load method to replace my main content, then firing a callback function to either just bind some events or do an ajax call to load some data into the page(search results for example). I do this in the pageload function for the history plugin to manage everythin

[jQuery] Re: serialize array question for dynamic form

2009-03-03 Thread Matt Critchlow
Wow... can't believe i didn't try that. thanks! On Mar 2, 4:22 pm, mkmanning wrote: > You need a 'name' attribute on your inputs. > > On Mar 2, 3:56 pm, Matt wrote: > > > Hi, > > > If i create a dynamic form(requirement for a project) serializeArray() > > or serialize() doesn't seem to work. Is