[jQuery] Tabs and Hide/Show Divs

2008-01-21 Thread MikeP
Hello. I'm using tabs to display lists of data. http://stilbuero.de/jquery/tabs_3/ http://dev.jquery.com/view/trunk/ui/current/ui.tabs.js When you click on an item in the list, I display a div. $('#problempanel').show(); If you click on another tab, I would like the div to hide. How can I add

[jQuery] Re: Tabs and Hide/Show Divs

2008-01-21 Thread MikeP
How would I do this? Thanks! Mike On Jan 21, 9:22 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On Jan 21, 1:22 am, MikeP <[EMAIL PROTECTED]> wrote: > > > Hello. > > I'm using tabs to display lists of > > data.http://stilbuero.de/jquery/tabs_3/http://dev.jque

[jQuery] tabs display IE versus Firefox

2008-01-24 Thread MikeP
Hello. My tabs are functional in both IE and Firefox. However, the look inside the tabs is different. The words are appearing in white in IE and dark blue in Firefox. I've tried removing all the other styles on my page and it didn't seem to do anything. Could it have something to do with Unordere

[jQuery] Re: tabs display IE versus Firefox

2008-01-24 Thread MikeP
Charles, Thanks. Using the Standard mode fixed the problem. THANKS! Mike On Jan 24, 12:03�pm, "Charles K. Clarkson" <[EMAIL PROTECTED]> wrote: > MikeP wrote: > > : Hello. My tabs are functional in both IE and Firefox. However, the > : look inside the tabs is di

[jQuery] Populate Form Values with Json returned Ajax call

2008-01-26 Thread MikeP
I do an ajax call to load a form. The data is returned via json. What's the best way to mass populate the form without setting each id...one by one? Also, does this mean that I would need to name my form fields the same as the database field names? Thanks, Mike

[jQuery] Populate a radio button or check box from ajax call

2008-02-08 Thread MikeP
I'm searching through the docs but I can't find the syntax on how to populate a checkbox or radio button. I'm currently using the following format to populate a text box: $("input#mydivID").val(returndata.data.itemvalue); Thanks, Mike

[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] jQuery Field Plug-in - Ajax Post Data

2008-02-12 Thread MikeP
Hello, 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}, Usi

[jQuery] Ajax Post URL - unterminated regular expression literal

2008-02-18 Thread MikeP
Hello. I'm using an Ajax Post. It works fine when I use the path in the url... url: "controllers/processajax.cfm", However, If I want to use a url string like: url: "index.cfm?Action=processajax", Then I get the following error: unterminated regular expression literal It blows up in what appea

[jQuery] Ajax Post URL

2008-02-25 Thread MikeP
Hello. I'm using an Ajax Post. It works fine when I use the path in the url... url: "controllers/processajax.cfm", However, If I want to use a url string like: url: "index.cfm?Action=processajax", Then I get the following error: unterminated regular expression literal It blows up in what ap