[jQuery] Re: not updating images after ajax request

2009-01-22 Thread Genus Project
maybe it is caching the image :) On Jan 22, 1:27 pm, pere roca wrote: > hi all, > > I'm having problems updating images dynamically. The thing is that the src > attribute is allways the same (that's not an error but I need it this way) > but the file the src points to is dynamically created via

[jQuery] Re: Download a file from server...

2009-01-22 Thread Genus Project
or you can do this. 1. your php create the file from your post. 2. return something to the script ($.post) that says you have successfully created the file or maybe with the filepath in it in json or whichever format it is. 3. redirect your current window to the path of this file. But it may

[jQuery] Re: AJAX delay response.

2009-01-22 Thread Genus Project
like to lend a hand, > > you can view the site athttp://tev.educationvacation.org.  Thanks! > > > On Jan 12, 1:27 am, Genus Project wrote: > > > Could anyone tell me what is wrong with this code? :( > > > > function sendAjaxRequest(param,listener){ > > >

[jQuery] AJAX delay response.

2009-01-12 Thread Genus Project
Could anyone tell me what is wrong with this code? :( function sendAjaxRequest(param,listener){ $.ajax({ type: "POST", dataType: "json", url: "index.php?page=ajax", data: param, success: function(data){ if(data.status==0){ $("#"+listener).trigger('trueSuccess',[data]);

[jQuery] Is there a delay when passing data to trigger method?

2009-01-12 Thread Genus Project
I have this strange problem. what i notice is when i am sending an AJAX request then i get the response say in "xxx" ms. but it takes additional seconds to pass the response data to an element. to make it clear here is what im doing. 1. register a custom event listener on a particular element. 2.

[jQuery] Re: Jquery tablesorter problem

2009-01-12 Thread Genus Project
when the table is generated by server side code, are you sure you are calling the correct selector ("#"+serverIdPrefix+"table1) ? maybe you missed some letter or something. you can use firebug to examine the generated table html to see if you are in fact calling the correct selector. If you are, i