[jQuery] Re: jQuery AJAX Question

2010-01-07 Thread Mike Alsup
I was curious if there was a way to hit the current xhr object in the success callback.  I've been tinkering with it, and have been unable to figure out how to do that. No, but you can access the xhr in the 'complete' callback.

[jQuery] Re: jquery ajax question?

2009-10-07 Thread James
$(active).serialize() will not do anything to a text element, only input elements. You'd probably want to change your ajax data option to something like: data: { article:active } where article will become your field name in your script. active is your Javascript variable (var active =

[jQuery] Re: jquery ajax question?

2009-10-07 Thread rosnovski
Hey thanks for the reply, the group lives!!! I did that and still nothing. I am using codeigniter and I would like to paste the code incase it sheds more light and maybe a solution? thanks here it is: MODEL- function displayby_name($name) { $this-db-select

[jQuery] Re: jquery ajax question?

2009-10-07 Thread James
$this-input-post('active') Is active the right variable? Or did you use article like I put in to my example? This is a jQuery group meant for jQuery questions, so I'm trying to help on the jQuery part, mainly. Try using Firebug for Firefox to debug the AJAX request, and determine whether the