[jQuery] Accordion-like functionality

2009-07-21 Thread steves
Hello, I'm trying to accomplish an accordion-like function, but instead of dropping down the section below, the content just lays over the other options. For example, take a look at the Accordion example here: http://jqueryui.com/themeroller/ Notice how when section 2 is clicked, section 1 r

[jQuery] Resizing a Thickbox

2009-08-06 Thread steves
Hello, I've done a bit of googling and some experimentation but I'm a bit lost. I'm trying to dynamically resize a modal lightbox created with thickbox. So for instance, I draw the div with certain content, say a form with a select box. I'd like to be able to add additional content to the d

[jQuery] filter().find() are not returning elements

2008-11-04 Thread SteveS
Hello, I'm still a newbie at jQuery and I'm having some trouble trying to select some nodes from XML. I'm simply trying to display the value in the Value element. For some reason, it returns zero elements. var xml = "123"; $(xml).filter("MyPlace").find("Value").each(function() { alert(

[jQuery] Re: filter().find() are not returning elements

2008-11-05 Thread SteveS
One problem is the XML has a syntax error - the Search, but it still doesn't work. I corrected it below. var xml = "123"; $(xml).filter("MyPlace").find("Value").each(function() { alert(this.value); }); Thanks again for anyone's help! On