Re: [jQuery] Accordion help ....

2010-02-26 Thread Nathan Klatt
On Fri, Feb 26, 2010 at 3:12 PM, Erik wrote: > My accordion is working great, but I need to STOP the hover on the > selected item. You should be able to deactivate the hover for .ui-state-active elements. Nathan

[jQuery] Accordion help ....

2010-02-26 Thread Erik
Hi all, Just joined this new forum. My accordion is working great, but I need to STOP the hover on the selected item. Example, when I select BATH & BODY, I want the hover stop for that particular section: bath & body I'm using the following ACCORDION script: $(function() { $("#accordion")

[jQuery] jQuery tab menus with Simple jQuery accordion

2010-01-12 Thread drizzy
Hey Everyone, Basically I used these two jQuery plugins to achieve this, but I'm having troubles... http://www.queness.com/post/106/jquery-tabbed-interfacetabbed-structure-menu-tutorial http://css-tricks.com/snippets/jquery/simple-jquery-accordion/ I took it out the simple jquery acco

[jQuery] Accordion Navigation Menu: help needed!

2009-12-30 Thread zsigmonda
this case, I want the menu to stay open on 2009, so that you can easily navigate among the bands in that section... Not sure how to make this work. Here is the code I am currently using, courtesy of Marco (http://www.i-marco.nl/weblog/jquery-accordion-menu/): function initMenu() { $('ul

[jQuery] Looking for jquery accordion menu with submenu??

2009-12-09 Thread 123gotoandplay
Hi all, I am looking for a jquery accordion menu with submenu. Right now i am trying to edit http://www.i-marco.nl/weblog/archive/2008/05/08/simple_jquery_accordion_menu__?utm_campaign=searchlanding but unfortunatly i am stuck Any other tutorials, suggestions??

[jQuery] Re: jQuery Accordion problem - Links not working

2009-12-05 Thread goldlilys
On Dec 2, 12:05 pm, hannahmac wrote: > > > I am using a Jquery accordion menu on a website I'm working on - and > > being a novice I've discovered that none of the links are not working. > > The movement of the menu seems fine, but every link on this left hand > >

[jQuery] Re: jQuery Accordion problem - Links not working

2009-12-05 Thread goldlilys
, 10:28 am, Scott Sauyet wrote: > On Dec 2, 12:05 pm, hannahmac wrote: > > > I am using a Jquery accordion menu on a website I'm working on - and > > being a novice I've discovered that none of the links are not working. > > The movement of the menu seems fine,

[jQuery] accordion menu: can't get links to link

2009-12-05 Thread Marion
I'm trying to write a very simple accordion menu. The markup is a list of links and sub-lists (of links). The behavior I want is that when you click on a link, you follow the link, and when you click on a list li, you toggle the visiblity of the sub-list. The problem I have is that while the cli

[jQuery] Re: jQuery Accordion problem - Links not working

2009-12-02 Thread Scott Sauyet
On Dec 2, 12:05 pm, hannahmac wrote: > I am using a Jquery accordion menu on a website I'm working on - and > being a novice I've discovered that none of the links are not working. > The movement of the menu seems fine, but every link on this left hand > menu is going nowhe

[jQuery] jQuery Accordion problem - Links not working

2009-12-02 Thread hannahmac
Hi there I am using a Jquery accordion menu on a website I'm working on - and being a novice I've discovered that none of the links are not working. The movement of the menu seems fine, but every link on this left hand menu is going nowhere. Are there any guys and gals out there who

[jQuery] Accordion, fieldset and selectors question

2009-11-26 Thread Bruce MacKay
Hello folks, I have an operational accordion based on a series of fieldset tags (the content) and h6 tags (the triggers). It is initiated by: $('.accord > h6').click(function() { $(this).next('fieldset').slideToggle('fast').siblings ('fieldset:visible').slideUp('fast'); }); The trigger

[jQuery] Accordion Menu

2009-11-10 Thread Nelly
Hi! I'm trying to implement an accordion menu but I'm only getting the first sub menu to show up when I click on its header menu. This is the code I have for the function. $(document).ready(function() { $("div.menu_body").hide(); $("p.menu_head").click(function() { $(

[jQuery] Jquery Accordion Menu, collapsing when navigation throughout site

2009-11-07 Thread huminuh83
I'm using this plugin for an accordion navigation in jquery. http://www.i-marco.nl/weblog/jquery-accordion-menu/ Which works great, but my problem that my little pea brain can't seem to figure out is how to keep the menu open on the continuous pages a user clicks through. Here is a l

[jQuery] Re: Jquery Accordion and History

2009-11-05 Thread "Cowboy" Ben Alman
It would probably be pretty easy to adapt the jQuery BBQ "jQuery UI tabs" example to meet your needs. You should take a look at the code and try to understand it, it's fairly well documented: http://benalman.com/code/projects/jquery-bbq/examples/fragment-jquery-ui-tabs/ Basically, you decouple th

[jQuery] Jquery Accordion and History

2009-11-04 Thread mehstg1319
Hey Trying to implement JQuery on a website I am working on, basically, the whole front page is one big accordion and clicking on the various bars opens and closes the sections. Like this example. This all works perfectly, but like all javascript, if the user clicks the back button, it does not k

[jQuery] Accordion Menu and active link

2009-10-21 Thread Clemens
hi, i use the followig accordion menu: function initMenu() { $('#submenu ul').hide(); //$('#submenu ul:first').show(); $('#submenu li a').click( function() { var checkElement = $(this).next(); if((checkElement.is('ul')) && (checkElement.is(':visible'))) { return fals

[jQuery] Accordion, there are too many

2009-10-12 Thread Scott Haneda
There are just too many accordions out there, can someone point me in the right direction. This need not be fancy: The first h3 of course should not be hidden. On clicking any of the h3's, which I will href a link to '#' on, that one should go from hidden to shown. Clicking on any ot

[jQuery] Accordion in IFrame

2009-10-07 Thread Tom
Hello, I am working with DotNetNuke and the Accordion widget from JQuery. The problem is that the DNN-page is loaded in an IFrame so i cannot acces the accordion. The contents of the IFrame is loaded dynamically. I have tried to acces it this way: $(""#frmDNN #accordion"").accord

[jQuery] Accordion UI height issue in Google Chrome

2009-09-28 Thread -e-train
Hi All - Having another issue related to the accordion ui widget. In google chrome the initial inline height set by the accordion.js is calculating incorrectly on the initial page load. when the page is refreshed or you navigate to another page and then return, the height is set correctly. I am

[jQuery] Accordion Active 2 -trouble with selector in javascript function

2009-09-11 Thread guru520
function activities(obj) { $(document).ready(function() { $('.ui-accordion-container').accordion('option', 'active', 3); }); } Personal Info Your Name

[jQuery] Re: jQuery accordion menus flickering in IE 6 and 7

2009-09-01 Thread Moose1
Thanks for the help. Turns out it has to do with the other cold (Coldfusion) on our ancient website somehow not playing well with jquery in IE. Cheers. On Sep 1, 3:27 am, Jörn Zaefferer wrote: > This should be fixed in trunk. Give the latest stylesheet a > try:http://jquery-ui.googlecode.com/

[jQuery] Re: jQuery accordion menus flickering in IE 6 and 7

2009-09-01 Thread Jörn Zaefferer
This should be fixed in trunk. Give the latest stylesheet a try: http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.accordion.css Jörn On Mon, Aug 31, 2009 at 8:54 PM, Moose1 wrote: > > I've seen several threads about this online but haven't not seen a > solution that has worked so far. My

[jQuery] jQuery accordion menus flickering in IE 6 and 7

2009-08-31 Thread Moose1
I've seen several threads about this online but haven't not seen a solution that has worked so far. My accordions work great, but in IE 6 or 7, when the animation is done, the entire contents of that div flicker for a split second. Is there a solution to this? My page is here: http://www.keene.ed

[jQuery] Re: Jquery treeview jquery accordion

2009-08-25 Thread andrerav
On Aug 23, 4:02 pm, serdartu wrote: > When i used jquery treeview plugin inside accordion plugin treeview > styles not working? > > Best Regards I'm having the same problem. Anyone know any workarounds for this? -Andreas

[jQuery] Jquery treeview jquery accordion

2009-08-23 Thread serdartu
When i used jquery treeview plugin inside accordion plugin treeview styles not working? Best Regards

[jQuery] Accordion Flickers in Firefox Only

2009-08-20 Thread Web Dev
Hey guys I seem to be having an issue with the accordion flickering in Firefox but not in IE. It happens mostly with the Expand All and Collapse All features. I am thinking it must be my CSS which I have altered to create a custom box around the content. Can anyone help me figure this one out? Her

[jQuery] Re: jquery accordion inside the jquery tabs

2009-08-17 Thread Alex Pimenta
I can solve this problem insert tha follow instruction : if (isNaN(g)) g = 0; afer if (l.prop == "height") { g = (l.now - l.start) / (l.end - l.start); } so ... step: function(k, l) { if (l.prop == "height") { g = (l.now - l.st

[jQuery] Accordion Position Fixed

2009-08-17 Thread Paulodemoc
Hey Guys I am having a problem. I am using an accordion on a page inside a Thickbox. But when the computer dimensions are too small, the scrollbars appear on the thickbox, but the accordion is fixed... it scrolls with the page :S Does anyone knows how can I fix this?

[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] Accordion in a for loop

2009-07-18 Thread dracero
I was trying to build an Accordion menu using a for loop but all of my trying failed. Could anybody tell me how to perform that action (if it is possible)? Thanks in advance.

[jQuery] Accordion with dynamic loading data

2009-07-16 Thread Todd Stuart
Hello I am needing an accordion with dynamic data loading on each tier. Does anyone have a good example of this. I thought I would ask before I took the dive. Thanks, TS

[jQuery] Re: jquery accordion inside the jquery tabs

2009-06-22 Thread Henchan
Very similar problems experienced here. As well as accordion, my JQuery sliders were also failing. I fixed it by removing some code from my application. I got this code from D. Crockford. Object.prototype.beget = function () { // thanks Crockford function F() {} F.prototype = this; re

[jQuery] Accordion List Issue

2009-06-11 Thread Skunkmilk
Hi All, Very new to Jquery and was hoping i can get some help. I have an accordian list much like the example here : http://docs.jquery.com/UI/Accordion#option-active Say for instance i have page links under the heading 'Section 2' of that demo above. How can i make it so that when you visit a p

[jQuery] Accordion Mouseover Event

2009-06-05 Thread Alaa
Hello, I am trying to implement an accordion with event = "mouseover", when I write $(function() { $("#accordion").accordion({ event: "mouseover" }); }); It shows the accordion and I can navigate by mouseover, but , when I

[jQuery] accordion help needed

2009-06-03 Thread gaurav
Hello Guys, I have applied the jquery accordian on this site:- http://renegadehealth.com/blog/ If you see on the right hand side when you click on the Today's Show there is a big white gap height wise coming from the accordian. js file. How do i remove this? http://renegadehealth.com/blog/wp-

[jQuery] Re: jquery accordion inside the jquery tabs

2009-06-02 Thread Ryan
I'm getting the exact same problem. Accordion inside 2nd tab of 3 is freezing. Visual Studio points to this line: j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit g is NaN, l.prop is height. g is set right before this: g=(l.now-l.start)/(l.end-l.start) l.now, l.start, l.end are

[jQuery] Accordion and Facebox

2009-06-01 Thread Ben
I have installed accordion on my project. It works perfect for my side navigation bar. However, when i install my project with facebox afterwards, it is not working perfectly. For instance, 1. when i close the popup by facebox, the accordion isn't working until i click one of the sidebar. 2. the

[jQuery] Accordion and Facebox

2009-06-01 Thread Ben
I have installed accordion on my project. It works perfect for my side navigation bar. However, when i install my project with facebox afterwards, it is not working perfectly. For instance, 1. when i close the popup by facebox, the accordion isn't working until i click one of the sidebar. 2. the

[jQuery] Accordion and Facebox

2009-06-01 Thread Ben
I have installed accordion on my project. It works perfect for my side navigation bar. However, when i install my project with facebox afterwards, it is not working perfectly. For instance, 1. when i close the popup by facebox, the accordion isn't working until i click one of the sidebar. 2. the

[jQuery] Re: jquery accordion inside the jquery tabs

2009-05-22 Thread Nathan Searles
You'll want to read: http://docs.jquery.com/UI/API/1.6/Tabs At the bottom there is a section called "...my slider, Google Map, etc. not work when placed in a hidden (inactive) tab?". As the docs state: Any component that requires some dimensional computation for its initialization won't work i

[jQuery] accordion problem

2009-04-28 Thread iam_peter
this website dummie uses the jquery accordion plugin http://gonzo.uni-weimar.de/~atix5565/kim/ for now everything is ok, but their is a bug which lets disapear a div container. try this steps first: portfolio -> installations -> then the thirdmenu appears reload page. now second step:

[jQuery] Accordion : remote objects

2009-04-22 Thread okpoube...@gmail.com
Hello everyone (pls excuse my english...) I'm trying to add an accordion to a page. But i can see that the correct structure is something like this: item1 content1 item2 content3 i.e., elements must be contiguous. Is it possible to have something like that: item1 content1 ---

[jQuery] jQuery Accordion & IE8 issue

2009-04-17 Thread d.williams
Hi all, I have the jQuery Accordion from the UI running here: http://distantelegy.net/clients/ebip It works fine in all the browsers I've tested except IE8. When I mouse over any of the moving pieces, I get an Invalid argument error. It references line 1061 in the development code, whi

[jQuery] Accordion Content height

2009-03-05 Thread Dan Vega
It seems each of the blocks are the same height as the largest. Is there a way to tell them only to be as tall as their content?

[jQuery] Accordion and external controls

2009-03-01 Thread zac
I have a accordion menu that expands and contracts with mouse over: $("dd").hide(); var overFn = function(){ $("dd:visible").slideUp("slow"); $(this).parent().next().slideDown("slow"); }; // hover delay var outFn = function(){}; $("dt a").hoverIntent({ over: overFn,

[jQuery] How open a painel in jQuery Accordion after a click event??

2009-02-26 Thread AndreMiranda
Hi everyone! I have 2 painels in my Accordion. One has a form and the other has a flexigrid showing me all data. What I needed is when I save data to database via $ajax, I change the form painel to the flexigrid painel, but so far I haven't been successful. this is what I'm doing: $("#btnAdici

[jQuery] Re: help to develop my Jquery Accordion

2009-02-23 Thread lock2007
I put the code in this link : http://www.infotica.org.tn/jquery/ Thanks !!! On Feb 23, 3:33 am, Charlie Tomlinson wrote: > you haven't explained what the problem is > have you a link to look at? > lock2007 wrote:Hi, I tried for a few days to have a code "JQuery Accordion&qu

[jQuery] Re:help to develop my Jquery Accordion

2009-02-22 Thread Charlie Tomlinson
you haven't explained what the problem is have you a link to look at? lock2007 wrote: Hi, I tried for a few days to have a code "JQuery Accordion" for my menu as it is used in the Apple site. But I still have problems. So I found another nice code in the address: http://

[jQuery] help to develop my Jquery Accordion

2009-02-22 Thread lock2007
Hi, I tried for a few days to have a code "JQuery Accordion" for my menu as it is used in the Apple site. But I still have problems. So I found another nice code in the address: http://berndmatzner.de/jquery/hoveraccordion/index.php I tried to put the code to work on three levels: Menu

[jQuery] Accordion

2009-02-15 Thread FredJones
Firstly, the demo here http://docs.jquery.com/UI/Accordion does not work for me on any browser I test. I think it is broken. Secondly, I am using this widget on a tag where each has another . It works well BUT if the bottom one is open and you put the mouse on that tag and then slide it up to

[jQuery] Accordion newbie problem

2009-02-09 Thread oobov
Hi there. I don't know if it is the right place for that, sorry if not. I have a newbie problem. I've red the documentation but i can't find the solution. I have a page with 3 accordions, based on the demo script, so i have: jQuery().ready(function(){ // simple accordion

[jQuery] jquery accordion customization

2009-02-03 Thread Eric
So I'm looking to use the jquery accordion code to expand and collapse content on a page. I was wondering how I would set it up so that when I click on a link in the page like more details, it would expand the div below it. Sorry I am really new to jquery and javascript so any help wou

[jQuery] Accordion menue with up to 3 levels

2009-02-03 Thread DCT, Heidi Anselstetter
lish) > Betreff: [jQuery] Re: Accordion menue with up to 3 levels > > > On 3 Lut, 14:32, heohni wrote: > > I am wanting to use the jquery accordion menu with a structure up to 3 > > levels. Is that a) possible and b) has somebody a demo / tutorial for > > this ki

[jQuery] Accordion menue with up to 3 levels

2009-02-03 Thread heohni
Hi, I am wanting to use the jquery accordion menu with a structure up to 3 levels. Is that a) possible and b) has somebody a demo / tutorial for this kind of menu for me? Thanks! Heidi

[jQuery] accordion plugin in ie7 does not fully collapse

2009-01-26 Thread c.s
I'm using the accordion plugin to achieve as a wizard for a multi-part form. in ie7, the li don't fully collapse so the form does not fix all the way to the top. it does not happen in firefox. does anyone know of a way to fix this issue? i thought the most recent version of the accordion take car

[jQuery] Accordion?

2009-01-25 Thread biofob...@gmail.com
I'm new to jQuery so I have a noob question. What´s the plugin to do the horizontal scroll similar to this site? http://lukelarsen.com/ I search for accordion on the official site but I can´t find anything. Sorry for the noob question Thanks in advance

[jQuery] Accordion push to bottom

2009-01-21 Thread Dan Vega
I have a sidebar that is 450 in height. I have 5 accordion menus and they are working fine. What I would like to do though is when you click one of the items for the other icons to push to the very bottom of the content area just like it does on http://www.hp.com/. Does anyone know how to do this

[jQuery] [accordion] Accordion overflow problems in IE6 (maybe also 7)

2009-01-16 Thread zemm
Hi all, the accordion won't work properly in ie6 (works perfectly in ff 3). the structure: ...

[jQuery] Accordion initial state after page changes

2008-12-15 Thread alex.zeta
Hello, I'm stuck with a simple jquery accordion script that is http://www.stevekrueger.com/jquery-accordion-tutorial/. The problem is that there are links inside my divs that brings to another page where the same accordion menu should be included and left opened at the same state lik

[jQuery] accordion - trigger *and* link possible?

2008-11-30 Thread snlsn
I'm new to the jQuery UI accordion. I'm hoping to use it for a menu. I'm loving the "navigation" option. However, one of my team members feels strongly that, in order to avoid confusion, every user's click should load a page. It appears that the accordion widget prevents navigating to the href att

[jQuery] Accordion activate not working

2008-11-05 Thread KCWebMonkey
I have an accordion which i am trying to activate on page load, and the .activate function doesn't appear to be working. can someone show me how i'm implementing it incorrectly? JavaScript: $(document).ready(function() { $('#childnav').accordion({

[jQuery] Accordion script within a portlet

2008-11-04 Thread Karin
I'm trying to incorporate an accordion script into an IBM Websphere portlet. The scripts work fine on their own, but once I try putting it inside a portlet, then it will not work at all. I'm working in IE6. Any ideas?

[jQuery] Accordion

2008-11-01 Thread Frankjr
Hi all, I am a js idiot, but I did manage to get a page up and working. My problem is that I want all accordions closed initially and can't seem to find the solution. (The first one is always extended.) I thought 'all closed' was the default but apparently not. Here is the test url:

[jQuery] accordion box query

2008-10-21 Thread Steven Grant
I'm using the Accordion #1 example found on: http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/ Rather than stick with p tags in the accordion, I want to have a form in one of them. I added $(".accordion form:not(:first)").hide(); in the hope it would hide the con

[jQuery] accordion query

2008-10-21 Thread Steven Grant
Hi folks, I'm using the following for an accordion style menu Latest news Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi malesuada, ante at feugiat tincidunt, enim massa gravida metus, commodo lacinia massa diam vel eros. Proin eget urna. Nunc fringilla neque vit

[jQuery] Accordion movement not smooth + other weird stuff

2008-10-16 Thread David D.
Hi there, Luckily I've never had to ask about Jquery's performance or anything like that - it's a SOLID tool, but I'm trying to use the accordion in a unique way and am honestly not experiencing great results. I'm hoping it's just my own mistake :-p Take a look: http://militiamarketing.com/temp/

[jQuery] [Accordion] - documentation

2008-10-14 Thread Mauricio (Maujor) Samy Silva
I am playing with the jquery.accordion.js plugin. [1] I did searches in order to discover a resourse explaining the itens: values passed in the code implementation for the various flavors of the plugin documented on the demo page [2] For example: What does means, and which values are allowed for:

[jQuery] Accordion problem - closing issue

2008-10-13 Thread [EMAIL PROTECTED]
Hi, I can't seem to get my accordion to work. I have nested ul's, and I'd like it to close the open ul when you open another (normal accordion function). I would appreciate any help/tips. Thanks! Here is my jquery: $(document).ready(function(){ $(".accordion:eq(0)> li ul:gt(0)").hide();

[jQuery] Accordion

2008-10-08 Thread jaymix
Hi Is it possible to build an accordion using images, in an open and closed state, for the header bars? Each header bar is a different image. Many thanks

[jQuery] accordion issue

2008-09-23 Thread manuqc
Hello, I'm developing a website and added an accordion section to the homepage, so far it works pretty good, I am just having a little problem,all of the links are closed by default I will like to know how can I get to have the first one opened by default. this is the link while I'm still devel

[jQuery] Accordion working fine, just needing to make a small modification

2008-09-23 Thread manuqc
Hello, I'm developing a website and added an accordion section to the homepage, so far it works pretty good, I am just having a little problem,all of the links are closed by default I will like to know how can I get to have the first one opened by default. this is the link while I'm still dev

[jQuery] accordion open in different sections?

2008-09-16 Thread KEVIN EVANS
Hello, I am working on a site where I am using the Accordion script from http://docs.jquery.com/UI/Accordion on the left navigation. You have an option to keep a section open by defaultbut I need to change which button is opened depending on which section you are in, and I have that

[jQuery] Re: jQuery Accordion Library and jQuery Lightbox Plugin Conflict?

2008-08-27 Thread Steven W
That didn't work for me. Now I'm trying to implement lightbox 2 with jQuery accordion library and I still can't them to work together. I replaced every $ with $j and added var $j = jQuery.noConflict() to the top of my accordion js files (like someone suggested in a different f

[jQuery] Re: jQuery Accordion Library and jQuery Lightbox Plugin Conflict?

2008-08-26 Thread Jörn Zaefferer
could hint on how to fix > this: > > I have a jQuery lightbox gallery (which is using code from this page: > http://leandrovieira.com/projects/jquery/lightbox/) inside a jQuery > accordion panel (which is using this code from this library > http://docs.jquery.com/UI/Accordion) and e

[jQuery] Accordion open when opening a new page

2008-08-26 Thread phew72
Is there any way to Accordion something open as soon as the page loads? I'd like a group to accordion open when a user has been sent there. Cheers, PH

[jQuery] jQuery Accordion Library and jQuery Lightbox Plugin Conflict?

2008-08-26 Thread swaters
Hello, Does anybody know what is causing this and could hint on how to fix this: I have a jQuery lightbox gallery (which is using code from this page: http://leandrovieira.com/projects/jquery/lightbox/) inside a jQuery accordion panel (which is using this code from this library http

[jQuery] Accordion + load dynamic JSON data

2008-08-24 Thread David D.
Hi there, I just started making great use of the JQuery UI components and must admit, they are *awesome*. I am however having some trouble trying to figure out how to modify my accordion code so that I can support dynamic loading of content. So for example when the user clicks to load the accord

[jQuery] Accordion: Linking the Title of an Empty Panel to a Different Page

2008-07-22 Thread juro
Hi, I am using the accordion plugin and trying to get this functionality working. In respect to my demo, http://root.juro.at/showcase/questions/accordion-animation/accordion-animation.htm , I would like "Link 1" and "Link 2" to be treated as a normal hyperlink but the rest open the panels. Is thi

[jQuery] Accordion navigation menu

2008-07-18 Thread Michael W
Hi, I'm very new to javascript and even newer to jQuery. I recently downloaded a jQuery plugin called accordion which was a nav menu for a site i am currently building. I got it working just fine, however, it didn't allow me to customize as much as I would have liked. So I set about building my

[jQuery] ie6 bug w/ jquery accordion-drawer real world demo

2008-07-04 Thread tarendol2002
Hi all, Is there anybody who has fixed the css of this apple menu demo under ie6 ? I mean the demo that's on this tutorial and also available under the jquery ui svn trunk : http://jqueryfordesigners.com/slide-out-and-drawer-effect/ TIA

[jQuery] Accordion madness and two divs inside instead of one.

2008-06-29 Thread Przemysław Bajno
This is about accordion, but i want to do something, which hasn't been showed here: http://www.learningjquery.com/2007/03/accordion-madness Ok: I've got something > Title 1 > Lorem... > Lorem... > Title 2 > Ipsum... > Ipsum... > Title 3 > Dolor... > Dolor... > I want i to toggle but

[jQuery] Accordion madness and two divs inside

2008-06-29 Thread Rockstyle
This is about accordion, but i want to do something, which hasn't been showed here: http://www.learningjquery.com/2007/03/accordion-madness Ok: I've got something

Title 1

Lorem...
Lorem...

Title 2

Ipsum...

[jQuery] Accordion Problem

2008-06-07 Thread pedramphp
I have Problem this Accordion ... te Pack or Min version of Accordion Doesn't work with 1.2.6 if some one has the right Min or Pack Code ,please send me the Link...

[jQuery] Accordion issues: Closes when clicking link

2008-05-27 Thread hubbs
I am using the jQuery Accordion plugin (http://bassistance.de/jquery- plugins/jquery-plugin-accordion/) which is great. I have one problem. Inside of some of my accordion divs I have links to pdf files, external pages, etc. When you click on any of these links, it just closes the accordion

[jQuery] accordion 1.5 - fixed height with scrolling

2008-05-21 Thread rolfsf
I had an accordion working with an older version of the jquery.accordion plugin, such that the accordion was a fixed height, and if an individual 'drawer' had too much content it scrolled. accordion v1.5 seems to override my overflow settings. It may just be a different option setting, but I can'

[jQuery] Accordion Problems

2008-05-21 Thread fambizzari
I've just tried to implement the excellent UI Accordion plug-in (see http://www.favouritethings.com/dev/Accordion.htm) I am, however, struggling with 2 issues: 1. When you first open the accordion, it expands much more than needed and then contracts. 2. The manner in which it expands seems very

[jQuery] Accordion onLoad open then close automatically

2008-04-29 Thread adove
I am looking for help in a jQuery accordion which would be able to onLoad() open and then after a set number of seconds close. I have recently been introduced to jQuery and enjoy it, however, am nor proficient enough to be able to write the code myself. The accordion I am looking for would only

[jQuery] Accordion Style Navigation & Intermitten Click Issue

2008-04-29 Thread JumpingMattFlash
I've uploaded an example of this page which highlights the problems i've had. The concerning part is that the behaviour is different in IE 7 to Opera & Firefox. I'm trying to create a slide down site navigation which closes any other panel when opening a new one. In IE, you have to click twice to

[jQuery] Accordion: missing auto-close

2008-04-06 Thread [EMAIL PROTECTED]
In the menus here: http://vanilla-spa.homeholistics.com/treatments.htm , only the nested menu at the top auto-closes when you click another item. The main items remain open until you click them again. I don't think this is the default behaviour (I want only one item open at a time) but can't find

[jQuery] accordion doesn't work with more than one paragraph per heading

2008-03-30 Thread pab
$(document).ready(function(){ $(".accordion h2:first").addClass("active"); $(".accordion p:not(:first)").hide(); $(".accordion h2").click(function(){ $(this).next("p").slideToggle("slow") .siblings("p:visible").slideUp("slow"); $(this).toggl

[jQuery] jQuery Accordion Plugin

2008-02-12 Thread Andrej
Hi, I am having some issues implementing the Accordion plugin with tertiary menus from: http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ My issues are, mainly to do with the hidden (closed) ul's inheriting the height of the previously visible (open) ul's. This seems like a bug in A

[jQuery] accordion problem in IE

2008-01-29 Thread mohsin
i m having problem in IE once i click on accordion its work but next time it doesn't my code is follow jQuery('#navigation').Accordion({ active: true, header: '.head', navigation: true,

[jQuery] Re: JQuery accordion and TBODY

2008-01-12 Thread andy9989
Hi Karl, Thank you for replying. It looks as animating tbody is not doable because of different display properties, while .show()/.hide() works just fine. I tried to animate it through mootools and Adobe Spry - it does not work. Interesting that mootools make it work only in Firefox, not IE. The

[jQuery] Re: JQuery accordion and TBODY

2008-01-11 Thread Karl Swedberg
Hi Andy, I haven't tried it before, but I imagine it has something to do with the "display" property assigned to the tbody after it is shown. Is the problem occurring in all browsers? Have you tried a simple .show() and .hide() in place of the .slideDown('slow') and .slideUp('slow')? I k

[jQuery] JQuery accordion and TBODY

2008-01-11 Thread andy9989
Hi everybody, I am having problems with slideUP - slideDown applied to TBODY tag. The initial state is hide - all. when I apply slideDown, it slides down the content of TBODY (correctly) and instantly places it below the table. Here is a simple code: $j(document).ready(function(){ $j('tbo

[jQuery] Accordion Bug?

2007-11-21 Thread Jason Cartwright
Hi all, I think I've found a bug with the accordion [1] component. $ ().activate(false) [2] doesn't seem to remove the "selectedClass" class from the header of the selected element, as I'd expect it to. I've made a simple test case over here... http://jason.m.cartwright.googlepages.com/accordion

[jQuery] Accordion Bug?

2007-11-20 Thread Jason Cartwright
Hi all, I think I've found a bug with the accordion [1] component. $().activate(false) [2] doesn't seem to remove the "selectedClass" class from the header of the selected element, as I'd expect it to. I've made a simple test case over here... http://jason.m.cartwright.googlepages.com/accordionbu

[jQuery] Accordion Header Image Replacement

2007-11-19 Thread yetanother
I have a simple accordion set up with the code below, but I want to be able to change the header's background image from an up arrow state to down arrow state and back automatically. Any ideas on where to go from here? $(document).ready(function() { $('div.acc> div').hide(); $('div.

[jQuery] Accordion or jQuery broken if the accordion data is loaded dynamically

2007-11-17 Thread Mark Lacas
Trying this again to see if anyone has any clues. I have been doing some dynamic things with accordion and have found some areas that don't work. After some rather extensive debugging it appears that the problem lies in jQuery. I'm doing some very dynamics things with the content that lives in

[jQuery] Accordion setting height: 0px and overflow-y: hidden

2007-10-18 Thread gregarious
Hi, I'm using the accordion widget that came with the recent release of jQuery UI and I'm having trouble getting the right height of the second content of the accordion. The code is as follow: $(function(){ $("#side-content").accordion(); }); $(function(){ // Load the tags and a

  1   2   >