[jQuery] Re: Waiting for Ajax Response

2007-09-13 Thread Theodore Ni
Perhaps you meant your options to be: $.ajax({ type: POST, url: adddata.php, dataType: html, data: name+=+entry, success: function(msg) { $('#'+holder).html(msg); } });

[jQuery] Re: Waiting for Ajax Response

2007-09-13 Thread Theodore Ni
I responded through email, but it didn't seem to get through. Perhaps you meant your options to be: $.ajax({ type: POST, url: adddata.php, dataType: html, data: name+=+entry, success: function(msg) {

[jQuery] Re: Waiting for Ajax Response

2007-09-12 Thread Pops
Hi, You are not clear on what the issue is, waiting for Ajax response Are you saying that you don't see anything? I'm working on a jQuery Ajax improvement and I can't wait to finish it up and get it releases as a plugin replacement. It resolves quite a few issues with the jQuery AJAX

[jQuery] Re: Waiting for Ajax Response

2007-09-12 Thread atomicnuke
Yeah, the response isn't being inserted using the $ ('#'+holder).html(msg); Usually firebug will tell me file not found or error from the file, but I'm getting nothing. I'll try your approach, see what happens.