[jQuery] jQuery/Cycle: Binding Secondary Nav

2009-03-20 Thread studiobl
Hi, I'm working on a banner display, using Cycle. The banner will use the out-of-the-box Cycle numbered nav, but the client also wants text links in the banner to page from slide to slide as well. How can I bind the pager functions to additional anchors?

[jQuery] [Plugin Selectbox] : How To Access Passed Parameter

2008-06-26 Thread studiobl
I'm using the Selectbox Plugin to populate a select box with a json string passed from a php page. I'd like to pass a parameter to the php page from the plugin call. How is this done? I tried doing $ (#myselect).ajaxAddOption(myoptions.php, {$code : 007}); and then in myoptions.php, attempting

[jQuery] Re: Selecting Children Of $(this)

2008-03-28 Thread studiobl
Sam, thank you. If my head was going to hurt today like it did yesterday, it was not going to be pleasant. Thanks again! On Mar 28, 5:59 am, Sam Collett [EMAIL PROTECTED] wrote: studiobl wrote: I'm working on a wireframe for an ecommerce site. I need to simulate some shopping cart

[jQuery] Selecting Children Of $(this)

2008-03-27 Thread studiobl
I'm working on a wireframe for an ecommerce site. I need to simulate some shopping cart functionality, like updating total counts and dollar amounts on change(). I've already done this with a page that contains one table. This page contains multiple tables, so I need to add another loop: from

[jQuery] Using wrap() On Absolute Positioned Element

2008-02-25 Thread studiobl
This isn't working for me. The div has two classes: actionBox and popup. If I go into the css and remove position:absolute from class popup, wrap() works fine. Anyone know how to use wrap() on an absolutely positioned element?

[jQuery] Selecting Descendents of This

2008-02-12 Thread studiobl
I'm having trouble selecting descendents of this So, this works to initially hide uls: $(.treeHeader ul).toggle(); But this doesn't work to toggle them: $(.treeHeader).click(function(){ $(this + ul).toggle(); });

[jQuery] Help With Modifying Treeview

2008-02-12 Thread studiobl
I'm trying to modify treeview. I want to eliminate the plus and minus boxes, and use the section labels as hit areas. A tree of two main sections would just be Section One and Section Two. Clicking on either one of these would expand it, and clicking a second time would collapse it. I can see

[jQuery] Re: Tab Effect

2008-01-30 Thread studiobl
/ul with three divs later div id=biography class=pro-tabInfo/div div id=background class=pro-tabInfo/div div id=contact class=pro-tabInfo/div On Jan 29, 9:46 am, studiobl [EMAIL PROTECTED] wrote: I have a set of tabs that use the sliding doors technique. The tabs are built

[jQuery] Selector Containing Variable

2008-01-30 Thread studiobl
I'm having trouble with a jQuery selector that contains a variable. I'm trying to target an element that has a class of orderInfo and an id of billy So, I set a variable: var tabText = billy; ...and it works if I use the string: $(.orderInfo[id='billy']; ...but not the variable:

[jQuery] Tab Effect

2008-01-29 Thread studiobl
I have a set of tabs that use the sliding doors technique. The tabs are built on an unordered list, with each tab being a list item containing an anchor. Each tab is decorated by placing a graphic in the background of its list item for the left part of the tab, and the background of the anchor

[jQuery] Looking for a Thumbnail Scroller with a Difference

2008-01-22 Thread studiobl
I'm looking for a plugin that functions like scrollShow http://www.freewebs.com/flesler/jQuery.ScrollShow/ with the following difference: when one of the thumbnails is clicked, it changes an area of the page. So you could have a number of divs that are hidden, scroll through the sample images,

[jQuery] jScrollPane Not Scrolling All The Way After Re-Skinning

2008-01-13 Thread studiobl
I'm using jScrollPane pretty much out of the box with the following changes: I put the scripts into assets/scripts, the css into assets/css, and the images into assets/images. Any urls have been changed to reflect this. I created three jpgs for the up arrow, down arrow (10 x 9 px) and the drag

[jQuery] Re: Selector for Toggled Element

2007-11-02 Thread studiobl
Neither that (nor some form of that) seems to work. On Nov 1, 3:43 pm, motob [EMAIL PROTECTED] wrote: try $(table:hidden) or some form of that. On Nov 1, 2:30 pm, studiobl [EMAIL PROTECTED] wrote: Any suggestions on how to retrieve the display attribute of a toggled element?

[jQuery] Selector for Toggled Element

2007-11-01 Thread studiobl
I'm trying to write an if statement based on the toggled state of an element (a table, in this case). Attempting to select the table by any combination of id, class, and/or element type doesn't work. Using Firefox, I can see that the table is toggled between display:table and display:hidden.

[jQuery] MM AC_RunActiveContent jQuery

2007-09-07 Thread studiobl
I want to use the Interface library's Accordian on a page that already has a Flash piece wrapped in Macromedia's AC_RunActiveContent javascript for avoiding the IE security glitch. If I remove the Flash and the script tag to include AC_RunActiveContent.js, the accordian works as expected.

[jQuery] MM AC_RunActiveContent Breaks jQuery Interface

2007-09-03 Thread studiobl
I want to use the Interface library's Accordian on a page that already has a Flash piece wrapped in Macromedia's AC_RunActiveContent javascript for avoiding the IE security glitch. If I remove the Flash and the script tag to include AC_RunActiveContent.js, the accordian works as expected.