[jQuery] Re: jQuery Field Plug-in - Ajax Post Data

2008-02-12 Thread Dan G. Switzer, II
Mike, >Thanks a lot. It worked perfectly. >I was trying something similar without the eval: >data: {mydata}, > >...but that errored too. I guess because of the { }. I assumed >it was always needed. Probably because I don't really know what >it's used for. The {} notation is creating a structure.

[jQuery] Re: jQuery Field Plug-in - Ajax Post Data

2008-02-12 Thread MikeP
Dan, Thanks a lot. It worked perfectly. I was trying something similar without the eval: data: {mydata}, ...but that errored too. I guess because of the { }. I assumed it was always needed. Probably because I don't really know what it's used for. Thanks, Mike

[jQuery] Re: jQuery Field Plug-in - Ajax Post Data

2008-02-12 Thread Dan G. Switzer, II
Mike, >I'm using the jQuery Field Plus-in v0.7. I'm doing an ajax post to >another page. I was trying to pass all the name/value pairs at one >time but I'm runnilng into a problem. > >My current post data looks like this: >data: >{problemid:frm.problemid.value,problemTitle:frm.problemTitle.value}