accordion

accordion style problems

Hello, Thank you for your responce regarding the below answer: "When I need to override the styles applied by jQuery UI elements, I usually add a stylesheet that I load after the jQuery UI stylesheet and put my overrides into it, using the same selectors so that I know that my styles will take precedence. In this case look for the style...

Latest in mobile web development best practices

I know this has been asked a bunch of times before (notably here and here), but I'm looking for a good current guide for getting started in developing websites for modern mobile browsers. Ideally, I would love an updated version of Craig Hockenberry's excellent, 2.5-year-old Put Your Content in My Pocket---one that is aware of new devic...

Data Binding with Silverlight accordion Control

Hi I have Silverlight Accordion control in the ChildWindow and I customized it the following way <Style x:Key=itemStyle TargetType=AccordionItem> <Setter Porperty=HeaderTemplate> <DataTemplate> <TextBlock x:Name=_headertext/> </DataTemplate> </Setter> </Style> <Accordion Style"{StaticResource itemStyle}"> <Accordi...

invalid argument error of jquery accordion in IE

The jquery accordion throws "Invalid argument." exception in IE(mine is IE8). It works in Firefox and chrome. What may be the problem of jquery accordion with IE? Here is the html: <div id="accordion"> <h3><a href="#">Training</a></h3> <div> <ul style="list-style: none;"> <li><a href="...

remove/change element style in jquery accordion content

I am using jquery accordion in my application. I am showing some links in accordion content using ul and li. The active accordion content has lot of empty space underneath the links when using ul and li. By looking in Firebug, it shows the below style for each active accordion content. html: <div class="ui-accordion-content ui-help...

Accordion and jQueryCycle prevent href's from working

Checkout this site that I'm working on. The idea is as follows: -That the slide show is supposed to rotate - this works -When hovering over the menu on the right the appropriate slide appears - this works -Also when hovering the nav should expand to show a brief description - this works -When clicking on Airboat, Aircraft, UAV, or...

jQuery Expandable/Accordion Nav Menu with Multiple Levels and Remembers Menu State

I need to make an expandable menu that has multiple levels using jQuery. It also needs to remember the last state it was open to if you refresh the page or jump to a new page. I know there is the jQuery Cookies plugin but I'm not sure if the client wants cookies to be used. I found an example online but I can't figure out how to accommod...

JQuery Accordion: Opened div cuts in to meet content (reference image given)

Hi all, I'll get right to it. Here's a pic of what I'm talking about in the title: JQuery Accordion Bug. Notice how the outline of the div cuts in on the right side to meet the content of what I've selected. I've blocked out the content of the div in Paint, for confidentiality reasons, but you get the idea. This happens when I already h...

jQuery Accordion - open specific section on pageload

Hi, I have a rather basic implementation of a jQuery Accordion on a page (using 1.3.2, jQuery UI Core 1.72 and jQuery UI Accordion 1.7.2), and I wish to open the 2nd section when the page loads. i've tried numerous methods but nothing seems to work... HEAD SCRIPT: <script type="text/javascript"> $(function() { $("#accordion").acc...

jQuery Menu - Save the State and Preserve the Back Button

I am using this jQuery Accordion plugin to save the state of the menu using a hash (#) at the end of the URL for ever level that is expanded: http://sandbox.unwrongest.com/jquery.accordion/ The only problem is that the back button doesn't work. I have tried to implement the jQuery history plugin but can't figure it out. I wouldn't even...

Creating a multi-level accordion in jQuery

Hi, I am very new to jQuery, having previously only used CSS and XHTML. In a project I'm working on, I've been asked to add a sliding accordion menu to form the main basis of navigation in a website. An essential requirement is that the menu must support three levels of navigation. I have got it working fine using CSS, but I've hit probl...

JQuery UI Accordion Jumps with CKEditor

Hi everyone, I have an accordion working just fine, but once I include a CKEditor in it, everytime the accordion tries to show or hide that DIV, the accordion jumps a little funny. All other DIVS work just fine when I try to hide or show them. Jquery: 1.4.1 CKeditor: 3.1 Jquery UI: 1.8 Does anyone can point me in the right direction...

Making a JQuery UI accordion work without proper HTML structure (drupal)

I am using JQuery 1.3.2 and UI version 1.7, and Drupal 6.15 I would like to make an accordion using HTML output from Views modual. I modified the .tpl.php file to output the usable <h2></h2><div></div>,<h2></h2><div></div>... format. However, the Views module wraps the output in another <div>, looking like this: <div class="views-r...

jQuery Accordion - Need index of currently selected content part

I have a simple menu on a web page, based on the jQuery Accordion. I'm simplified the code somewhat, but it looks like this; <div id="menu_div" class="nt-tab-outer nt-width-150px"> <h3 class="nt-tab-title"><a href="#">Menu A</a></h3> <div id="menu_1_div"> <a href="itemA1">Item A1</a><br /> <a href="itemA2">Item A2</a><br /> </div> ...

control with ID 'GridView1' could not be found for the trigger in UpdatePanel 'UpdatePanel1'

I have two gridview in update panel and m adding entries from one gridview to another on selectedIndexChanged event what m trying to do is updating update panel on this event selectedindexchanged ...but my gridview is inside accordian control so it does not get initialized and hence i get this error ..... control with ID 'GridView1' co...

Problem with using lightbox and jquery-ui accordion in Drupal 6.15

Dear All, I have having problem putting jQuery-ui Accordion and Lightbox on the same page. I am using Drupal 6.15 Jquery 1.3.2 Jquery-ui 1.7.2 Lightbox2 drupal module The thing is... my lightbox works fine if I exclude the following line:- drupal_add_js('sites/all/js/jquery-1.3.2.js'); but if I exclude the above line, my accordion ...

Using horizontal accordion jQuery plugin for multiple websites

Is it possible to use a horizontal accordion plugin such as this one that opens web pages inside each slide? For example, one slide would be your email client, another could be a social networking site, and so forth. ...

Wrap several elements for accordion in jquery

Hello, I currently have the following html: <h3 /> <p /> <p /> <ul /> <ol /> <h3 /> <p /> <p /> <ul /> <ol /> <h3 /> <p /> <p /> <ul /> <ol /> I'd like to create an accordion but for this I need the following: <h3 /> <div> <p /> <p /> <ul /> <ol /> </div> <h3 /> <div> <p /> <p /> <ul /> <ol...

jquery accordion - link to specific tab

Hi, Im new to jquery and before i embark on a project i would like to know if it is posisble to link to part 2 or 3 of this demo from an external page. http://jquery.bassistance.de/validate/demo/multipart/ or have an anchor on each page any help would be appreciated. Thanks ...

how to customize behaviour of open header accordion ?

I have created a accordion pane control and my accordion pane header includes some text , picture and links . my requirement is that accordion pane should open only if user clicks on links otherwise if user clicks somewhere else in header , it should not respond or open container . how can i do this ?? can anyone help me ?? ...