[jQuery] Re: Var in through ajax, then copy to field

2008-05-15 Thread Karl Rudd
I think I see now. You should be able to parse the response (the 'data' argument from the sucess function) that you get back from the ajax call and filter out the ID. For instance, if the response is as follows: htmlbody !-- id=1231234 -- pThank you/p /body/html You could do something like

[jQuery] Re: Var in through ajax, then copy to field

2008-05-15 Thread hubbs
Thanks Karl, yes, I am using the form plugin on the second form for image upload. On May 15, 12:32 am, Karl Rudd [EMAIL PROTECTED] wrote: I think I see now. You should be able to parse the response (the 'data' argument from the sucess function) that you get back from the ajax call and filter

[jQuery] Re: Var in through ajax, then copy to field

2008-05-15 Thread hubbs
I actually came up with another solution that works perfectly for me. I just pass an actual input field, with the ID as the value, and inserted it right into my image creation for. Worked perfectly! On May 15, 12:32 am, Karl Rudd [EMAIL PROTECTED] wrote: I think I see now. You should be able

[jQuery] Re: Var in through ajax, then copy to field

2008-05-14 Thread Karl Rudd
It'd be easier if you could provide a link to a live page. It's a bit hard to know exactly what you're trying to do. Karl Rudd On Thu, May 15, 2008 at 2:56 PM, hubbs [EMAIL PROTECTED] wrote: I have a variable that is set on another page, and then is brought through ajax into another page.

[jQuery] Re: Var in through ajax, then copy to field

2008-05-14 Thread hubbs
Karl, this isn't possible, as it is part of an Administration Interface that I am building. Basicly, an ID number gets generated on a Thank you page of a form, this page, along with the ID is pulled into another page using ajax. This second page, uses that ID as a location to create an image.