Re: [jQuery] Re: Accordion help ....

2010-02-28 Thread Nathan Klatt
On Sun, Feb 28, 2010 at 12:00 AM, Erik wrote: >  { $(this).removeClass("ui-state-active"); } No, don't do that - that'll screw up the accordion, I expect. I mean something in the css like: .ui-state-active:hover { background-color: inherit; /* or "none" or some specific color */ } Nathan

[jQuery] Re: Accordion help ....

2010-02-27 Thread Erik
Thanks nathan... Where would I place this in this? $(function() { $("#accordion").accordion({ autoHeight: true, header: '.subcat' }); { $(this).removeClass("ui-state-active"); } Is this the correct format? Erik On Feb 26, 3:56 pm, Nathan Klatt wrote: > On Fri, Feb 26, 2010 a

[jQuery] Re: Accordion, fieldset and selectors question

2009-11-27 Thread Bruce MacKay
Excellent Adriana - thanks very much - also for quietly pointing out that I'd forgotten the return false bit. Cheers/Bruce On Nov 27, 2:45 pm, Adriana wrote: > Hi Bruce, > > Try this: > >     $('.accord > h6').click(function() { >         $(this).toggleClass('expand_group').siblings > ('h6.expan

[jQuery] Re: Accordion, fieldset and selectors question

2009-11-26 Thread Adriana
Hi Bruce, Try this: $('.accord > h6').click(function() { $(this).toggleClass('expand_group').siblings ('h6.expand_group').removeClass('expand_group'); $(this).next('fieldset').slideToggle('fast').siblings ('fieldset:visible').slideUp('fast'); return false; }); Reg

[jQuery] Re: Accordion, there are too many

2009-10-13 Thread Jörn Zaefferer
Yes, wrap those p tags in a div, and your markup is perfect for the the jQuery UI accordion. Jörn On Tue, Oct 13, 2009 at 3:00 AM, Scott Haneda wrote: > > There are just too many accordions out there, can someone point me in the > right direction. This need not be fancy: > > > About 80% of th

[jQuery] Re: Accordion-like functionality

2009-07-21 Thread Charlie
I believe your best bet would be a custom build solution. Most accordions use floating divs but to overlay the headers without moving them down you would need absolute positions. Shouldn't be too difficult to create fom scratch ste...@braingia.org wrote: Hello, I'm trying to accomplish an

[jQuery] Re: Accordion with dynamic loading data

2009-07-16 Thread Charlie
not hard to do , just have to use destroy() each time you change it $("#accordion).accordion('destroy');    create new accordion panels //reconstruct accordion $("#accordion).accordion(); Todd Stuart wrote: Hello I am needing an accordion with dynamic data loading on each tier. Does

[jQuery] Re: Accordion List Issue

2009-06-11 Thread Charlie
exactly terry irwin wrote: Thanks Charlie, Do you mean using it like this ? $(document).ready(function(){        $("#accordion").accordion({                active: false,                collapsible: true,    navigation : true        }); }); On Thu, Jun 11, 2009

[jQuery] Re: Accordion List Issue

2009-06-11 Thread terry irwin
Thanks Charlie, Do you mean using it like this ? $(document).ready(function(){ $("#accordion").accordion({ active: false, collapsible: true, * navigation : true * }); }); On Thu, Jun 11, 2009 at 11:19 PM, Charlie wrote: > navigation

[jQuery] Re: Accordion List Issue

2009-06-11 Thread Charlie
navigation : true In accordion will match link within accordion content to page url and open that section when page loads Skunkmilk wrote: 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/Acc

[jQuery] Re: Accordion Mouseover Event

2009-06-05 Thread GaVrA
Try using hover event. It accepts two functions, 1st for mouseover, and 2nd for mouseout. Something like this: $(function() { $(selector).hover({function () { //function for mouseover },function () { //function for mouseout }); }); On Jun 5

[jQuery] Re: accordion help needed

2009-06-03 Thread waseem sabjee
in your accordion setup $("#accordion").accordion({ autoHeight: false }); On Wed, Jun 3, 2009 at 6:49 PM, gaurav wrote: > > Hello Guys, > > I have applied the jquery accordian on this site:- > > http://renegadehealth.com/blog/ > > If you see on the right hand side wh

[jQuery] Re: Accordion : remote objects

2009-04-23 Thread okpoube...@gmail.com
It's not exactly multiple instances, because it's the same accordion, but elements that should be opened/closed are not contiguous. I think maybe i shouldn't use accordion, but have to find how to do.. On 22 avr, 19:41, "Natkeeran L.K." wrote: > Perhaps, I mis understood your request. > > The w

[jQuery] Re: Accordion : remote objects

2009-04-22 Thread Natkeeran L.K.
item heading something go here item heading2 something go here2 On Apr 22, 12:21 pm, "okpoube...@gmail.com" wrote: > 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 >

[jQuery] Re: Accordion : remote objects

2009-04-22 Thread Natkeeran L.K.
Perhaps, I mis understood your request. The way you showed is multiple instances of accordion. --- some content --- can be anything. Thats possible I suppose. Regards, Nat On Apr 22, 12:21 pm, "okpoube...@gmail.com" wrote: > Hello everyone > > (pls excuse my english...) > > I'm trying to a

[jQuery] Re: Accordion : remote objects

2009-04-22 Thread Natkeeran L.K.
Hi: Yes, It is possible. Check an example. http://pssnet.com/~devone/ajqtable/ac.html Regards, Nat -- Forwarded message -- From: "okpoube...@gmail.com" Date: Apr 22, 12:21 pm Subject: Accordion : remote objects To: jQuery (English) Hello everyone (pls excuse my english...

[jQuery] Re: Accordion Content height

2009-03-05 Thread Jörn Zaefferer
Yes, set autoHeight: false. Jörn On Thu, Mar 5, 2009 at 7:35 PM, Dan Vega wrote: > > 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] Re: Accordion

2009-02-15 Thread FredJones
OK, thanks

[jQuery] Re: Accordion

2009-02-15 Thread Richard D. Worth
Could you post this to the jQuery UI list? http://groups.google.com/group/jquery-ui Also, a sample page or pastie ( http://paste.pocoo.org/ or http://jsbin.com/) showing the problem you describe would help. Thanks. - Richard On Sun, Feb 15, 2009 at 7:40 AM, FredJones wrote: > > Firstly, the de

[jQuery] Re: Accordion newbie problem

2009-02-09 Thread oobov
Ah thank you very much, they way you wrote it made me understand what i've red in the documentation, it is just 2 different ways to write the same thing. Thank you, you made my day. On 9 fév, 21:39, Jörn Zaefferer wrote: > Assuming you use the default header: "a", add this: > > $("#accordion").a

[jQuery] Re: Accordion newbie problem

2009-02-09 Thread Jörn Zaefferer
Assuming you use the default header: "a", add this: $("#accordion").accordion({ active: "a:last" }); Jörn On Mon, Feb 9, 2009 at 7:41 PM, oobov wrote: > > 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 c

[jQuery] Re: Accordion menue with up to 3 levels

2009-02-03 Thread plusz
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 kind of menu for me? try this http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/

[jQuery] Re: accordion plugin in ie7 does not fully collapse

2009-01-27 Thread ShaneRileyDotInfo
Is there any way you can post a link to the code you're having trouble with? We'll need to see what's going on in the markup, primarily the CSS provided the HTML is valid and well-formed.

[jQuery] Re: Accordion?

2009-01-25 Thread Bohdan Ganicky
http://demos.flesler.com/jquery/scrollTo/ On Jan 25, 7:28 pm, "biofob...@gmail.com" wrote: > 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 f

[jQuery] Re: Accordion push to bottom

2009-01-21 Thread Jörn Zaefferer
Set fillSpace: true. Jörn On Wed, Jan 21, 2009 at 9:39 PM, Dan Vega wrote: > > 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 th

[jQuery] Re: Accordion problem - closing issue

2009-01-03 Thread Nestor Urquiza
Hi vld, I do not see how the provided markup can prove that accordion effect is possible for nested ul elements. If the below is used "hi" does not show up in any case for my environment at least (tested with Firefox 3.05 and Opera 9.62 on Ubuntu Intrepid, using ui.accordion.js from jquery.ui-

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

2008-12-01 Thread Jörn Zaefferer
To make the mouseover a better interaction, some hoverintent magic is useful. Again something planned: http://ui.jquery.com/bugs/ticket/3614 Jörn On Mon, Dec 1, 2008 at 4:26 PM, snlsn <[EMAIL PROTECTED]> wrote: > > Jörn > > Thanks for your continued interest and suggestions. > >> Have you tried t

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

2008-12-01 Thread snlsn
Jörn Thanks for your continued interest and suggestions. > Have you tried to setup the accordion with event:"mouseover"? That way > click events are "free" to happen, so you could even click a header. Well - I did fiddle with the version on the jQuery UI demo page. In general I don't personally

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

2008-12-01 Thread Jörn Zaefferer
Have you tried to setup the accordion with event:"mouseover"? That way click events are "free" to happen, so you could even click a header. Jörn On Mon, Dec 1, 2008 at 2:46 AM, snlsn <[EMAIL PROTECTED]> wrote: > > Thanks Jörn; >> an accordion header is just that, not two things at >> once. > > Ok

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

2008-11-30 Thread snlsn
Thanks Jörn; > an accordion header is just that, not two things at > once. Okay. I'll accept that. I can see how things would get messy. > In your case you're probably better of with a serverside > component. Never considered such a thing. Interesting. Do you have any serverside components you

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

2008-11-30 Thread Jörn Zaefferer
Thats by design - an accordion header is just that, not two things at once. In your case you're probably better of with a serverside component. See also http://docs.jquery.com/UI/Accordion#What_this_isn.27t Jörn On Sun, Nov 30, 2008 at 11:10 PM, snlsn <[EMAIL PROTECTED]> wrote: > > I'm new to the

[jQuery] Re: Accordion activate not working

2008-11-05 Thread KCWebMonkey
I got this to work finally by passing in the ID of the toggle i want to set active. On Nov 5, 11:01 am, KCWebMonkey <[EMAIL PROTECTED]> wrote: > 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

[jQuery] Re: Accordion

2008-11-04 Thread Frank J Ryan
Hi Olaf, The accordion is closed when the page loads as I had wanted. The following is what is in the head section to do that. I appreciate your response as that is what got me on the right path. active: true, alwaysOpen: false, animated: 'easeslide', a

[jQuery] Re: Accordion

2008-11-02 Thread Frank J Ryan
Hi Olaf, I'll try that. Thanks, Frank On Nov 2, 2008, at 5:48 PM, Olaf Bosch wrote: Frankjr schrieb: 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 alwa

[jQuery] Re: Accordion

2008-11-02 Thread Olaf Bosch
Frankjr schrieb: 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

[jQuery] Re: accordion query

2008-10-21 Thread Paul Mills
Hi, Your HTML is not valid as you can't have a inside a tag. As you have a mix of element types in your accordian I suggest you use an extra as a wrapper and adjust the jQuery code to operate on the instead of the . Something like this: Latest news Lorem ipsum dolor s

[jQuery] Re: [Accordion] - documentation

2008-10-14 Thread Jörn Zaefferer
That first link contained a link to the documentation here: http://docs.jquery.com/UI/Accordion Jörn On Tue, Oct 14, 2008 at 10:44 PM, Mauricio (Maujor) Samy Silva <[EMAIL PROTECTED]> wrote: > > I am playing with the jquery.accordion.js plugin. [1] > I did searches in order to discover a resourse

[jQuery] Re: Accordion problem - closing issue

2008-10-13 Thread Vlad Didenko
Of course, I assumed that you needed nested accordions - so that inner uls can be made into accordions as well.

[jQuery] Re: Accordion problem - closing issue

2008-10-13 Thread Vlad Didenko
http://www.w3.org/TR/html4/loose.dtd";> http://jqueryjs.googlecode.com/files/ jquery-1.2.6.pack.js" type="text/javascript" charset="utf-8"> http://ui.jquery.com/js/ui.js"; type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('.accordion').accordion({

[jQuery] Re: accordion open in different sections?

2008-09-17 Thread JohnieKarr
Hi Kevin, I did this on one of the website I maintain: http://www.lovinggodlovingyouonline.com and also, the navigation menu is in the includes. To further complicate things, I use page.php?id= to load each page, so I'm not even pulling seperate pages. Also, not always is page.php used...for e

[jQuery] Re: Accordion open when opening a new page

2008-08-26 Thread GasGiant
I would like to do the same and have tried a few things, but it would be most helpful if Accordion would read a variable passed in the URL, such as ?accordionIndex=2. It already will read cookies to do this, so adding the reading of a GET should be pretty easy. Okay, so I haven't figured it out y

[jQuery] Re: Accordion + load dynamic JSON data

2008-08-24 Thread David D.
Heh, Yeah AFTER posting then it hit me...I just have to attach an onClick to the and begin the loading process :-/ duh. Oh well, thanks anyways. :-p JQuery rocks! Dave On Aug 24, 7:09 pm, "David D." <[EMAIL PROTECTED]> wrote: > Hi there, > > I just started making great use of the JQuery UI c

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

2008-07-22 Thread Jörn Zaefferer
The navigation-option is documented here: http://docs.jquery.com/UI/Accordion/accordion The standalone accordion plugin got included and UI, but it didn't have support for that either. Jörn On Tue, Jul 22, 2008 at 8:54 PM, juro <[EMAIL PROTECTED]> wrote: > > Hi Joerg, > Thank you for your respo

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

2008-07-22 Thread Jörn Zaefferer
No, not with the standard accordion. Maybe you need something else: http://docs.jquery.com/UI/Accordion#What_this_isn.27t Jörn On Tue, Jul 22, 2008 at 12:52 PM, juro <[EMAIL PROTECTED]> wrote: > > Hi, > I am using the accordion plugin and trying to get this functionality > working. In respect to

[jQuery] Re: Accordion madness and two divs inside

2008-06-30 Thread Karl Swedberg
Hi there, You also posted this question on the blog, so I replied there yeserday: http://www.learningjquery.com/2007/03/accordion-madness#comment-50125 Let us know if you need any additional help. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 29, 200

[jQuery] Re: Accordion issues: Closes when clicking link

2008-05-27 Thread hubbs
I figured it out. I needed to specify a header (header: 'a.accordTitle',) On May 27, 10:04 am, hubbs <[EMAIL PROTECTED]> wrote: > 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

[jQuery] Re: Accordion Problems

2008-05-22 Thread [EMAIL PROTECTED]
Many thanks Jorn. That fixed it. Jörn Zaefferer wrote: > The autoheight option got renamed to autoHeight. > > Jörn > > On Wed, May 21, 2008 at 9:25 AM, fambizzari <[EMAIL PROTECTED]> wrote: > >> I've just tried to implement the excellent UI Accordion plug-in (see >> http://www.favouritethings.c

[jQuery] Re: Accordion Problems

2008-05-22 Thread Jörn Zaefferer
The autoheight option got renamed to autoHeight. Jörn On Wed, May 21, 2008 at 9:25 AM, fambizzari <[EMAIL PROTECTED]> wrote: > > 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: >

[jQuery] Re: Accordion Style Navigation & Intermitten Click Issue

2008-04-29 Thread Jörn Zaefferer
JumpingMattFlash schrieb: 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,

[jQuery] Re: Accordion: missing auto-close

2008-04-07 Thread [EMAIL PROTECTED]
Thank you, Jorn - I thought the UI docs had all been stashed in a secret hideaway! "An accordion doesn't allow more then one content panel to be open at the same time" Looks like I've accidentally achieved something clever ;) Cherry On Apr 7, 6:39 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wro

[jQuery] Re: Accordion: missing auto-close

2008-04-07 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: 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 op

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

2008-04-01 Thread Jörn Zaefferer
pab schrieb: $(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");

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

2008-03-30 Thread Karl Swedberg
Are you the one who asked this same question on learningjquery.com? If so, please take a look at my answer there: http://www.learningjquery.com/2007/12/questions-and-answers-from-the-list Thanks, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 29

[jQuery] Re: accordion problem in IE

2008-02-03 Thread Muhammad Mohsin
steve i changed the code of accordion little bit u... u need to set the fixed height of inner ul li i.e. (#navigation li li a) in css and then in js file there is no need to set height as in IE 6 and IE 7 u can not set height in negative. i m weak in english but if u need code i can email u On F

[jQuery] Re: accordion problem in IE

2008-02-02 Thread SteveM
I too am having the same problem with both IE6 and IE7. using. jQuery().ready(function(){ jQuery('#sideMenu').Accordion({ active: false, header: '.stitle', navigation: true, animated: 'easeslide'

[jQuery] Re: accordion problem in IE

2008-01-29 Thread Muhammad Mohsin
thnx jorn i changed few things i change the heights attribute as ie is giving javascript error when height is in negative. i m using ul navigation

[jQuery] Re: accordion problem in IE

2008-01-29 Thread Jörn Zaefferer
mohsin schrieb: i m having problem in IE once i click on accordion its work but next time it doesn't my code is follow [...] please tell me wht is problem Could you post a testpage? Jörn

[jQuery] Re: Accordion Bug?

2007-11-22 Thread Jason Cartwright
Nice one Jörn, works a treat. J On 21/11/2007, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > > > Jason Cartwright schrieb: > > 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

[jQuery] Re: Accordion Bug?

2007-11-21 Thread Jörn Zaefferer
Jason Cartwright schrieb: 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.cartwrig

[jQuery] Re: Accordion Header Image Replacement

2007-11-19 Thread Karl Swedberg
On Nov 19, 2007, at 3:11 PM, yetanother wrote: 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

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

2007-11-19 Thread Mark Lacas
Got it! Turns out unaccordion() is your friend when finished with an accordion group. Most pages won't need this because a reload of the page fixes things. Dynamic loading of accordion blocks does need to unaccordion() when finished with the accordioned data. If you don't call unaccordion(

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

2007-11-19 Thread Mark Lacas
Got it! Turns out unaccordion() is your friend when finished with an accordion group. Most pages won't need this because a reload of the page fixes things. Dynamic loading of accordion blocks does need to unaccordion() when finished with the accordioned data. If you don't call unaccordion(

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

2007-10-18 Thread Jörn Zaefferer
gregarious schrieb: Do you have any suggestion on how can avoid this problem? Any help will be very appreciated. In that case you should consider not using the accordion plugin at all, and writing your own solution instead. There are a few accordion related tutorials on learningjquery.com wh

[jQuery] Re: Accordion-Like Menu: Setting (and removing) class on active item

2007-09-24 Thread Moogadelic
Moogadelic wrote: > > Hi > > I tried to put together an easy accordion-like effect: > > http://www.smartforce.ch/jquery/ShowHide.html > > There is one problem: the selected-class will not be removed if all > items are closed (again). The class ".selected" should be removed if > no div is vis

[jQuery] Re: Accordion-Like Menu: Setting (and removing) class on active item

2007-09-24 Thread Wizzud
You could try... $(document).ready(function() { $('div.showHide> div').hide(); $('div.showHide> h2').click(function() { $(this).siblings('.selected').andSelf().toggleClass('selected').end().end() .next('div').slideToggle('fast') .siblings('div:visible').slideUp('fas

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-20 Thread Jörn Zaefferer
Frantisek Malina schrieb: Hi all, I've got a problem with the accordion plugin height callcullation. It is a very cool plugin, but there seems to be bug in here. Plugin at http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ It basically uses for stretching - height of the first eleme

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Demo at http://vizualbod.com/accordion/demo.html

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
demo is at http://vizualbod.com/accordion/demo.html On Sep 19, 11:13 pm, Frantisek Malina <[EMAIL PROTECTED]> wrote: > Hi all, > I've got a problem with the accordion plugin height callcullation. It > is a very cool plugin, but there seems to be bug in here. > > Plugin athttp://bassistance.de/jq

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Lovely demo of this bug is at http://vizualbod.com/accordion/demo.html It is still crashing in IE7.

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Lovely demo of this bug is at http://vizualbod.com/accordion/demo.html It is still crashing in IE7. I hope it can halp you to help me.

[jQuery] Re: Accordion Plugin - horizontal

2007-09-14 Thread Armand Datema
http://dev.portalzine.de/index?/Horizontal_Accordion--print http://cherne.net/brian/resources/jquery.slidingPanels.html On 9/14/07, Chango <[EMAIL PROTECTED]> wrote: > > Does anybody can help me to make accordion working in horizontal way? > > http://bassistance.de/jquery-plugins/jquery-plugin-a

[jQuery] Re: Accordion v1.5 and interface together cause accordion to stop working

2007-09-01 Thread Klaus Hartl
henry wrote: Hi, Do I just do a search and replace? Can you maybe share your modified interface.js that's compatible with the latest jQuery with us? Thanks. Henry Yes, I did a simple search and replace. I can't access the files right now. But in my case that were only two or three files a

[jQuery] Re: Accordion v1.5 and interface together cause accordion to stop working

2007-09-01 Thread jman
Hi, Another way I think I have it working is if I include the idrag.js, idrop.js and iutil.js files individually, instead of the packed interface.js. I have not fully tested if it works but it appears to. I only need the drag and drop features of interface so far so I am not sure if I will have

[jQuery] Re: Accordion v1.5 and interface together cause accordion to stop working

2007-08-31 Thread henry
Hi, Do I just do a search and replace? Can you maybe share your modified interface.js that's compatible with the latest jQuery with us? Thanks. Henry On Aug 31, 1:39 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > The problem is that interface overwrites jQuery's own animate function, > but unf

[jQuery] Re: Accordion v1.5 and interface together cause accordion to stop working

2007-08-31 Thread Klaus Hartl
jman wrote: Hi, I am trying to use accordion and interface on the same page and the accordion will not work. On line 177 of the accordion file the execution goes to the interface file when it is included. If I remove the interface file from the page line 177 of the accordion jumps to the jquer

[jQuery] Re: Accordion adventures

2007-08-21 Thread krdr . mft
It seems that problem is caused by using easing function. When easeing property in animation method is set on linear, there's no jumping. On Aug 20, 8:29 pm, "Dragan Krstic" <[EMAIL PROTECTED]> wrote: > Due to popular demand (Mikael ;) ) I decided to rewrite my invert accordion > script into plu

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-15 Thread Ganeshji Marwaha
no problem... glad u got it working. -GTG On 7/14/07, huphtur <[EMAIL PROTECTED]> wrote: Wow, so simple. Why didn't I think of that? Thank you Mr Marwaha for helping. On Jul 14, 8:16 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > So, you actually had a couple of issues, which we are f

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-14 Thread huphtur
Wow, so simple. Why didn't I think of that? Thank you Mr Marwaha for helping. On Jul 14, 8:16 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > So, you actually had a couple of issues, which we are fixing one by one i > guess ;-) > > Anyways, Changing the order in which the calls are made did

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-14 Thread Ganeshji Marwaha
a quick demo can be seen here as well http://www.gmarwaha.com/jquery/jcarousellite/testWithAccordion.php -GTG On 7/14/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: So, you actually had a couple of issues, which we are fixing one by one i guess ;-) Anyways, Changing the order in which the c

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-14 Thread Ganeshji Marwaha
So, you actually had a couple of issues, which we are fixing one by one i guess ;-) Anyways, Changing the order in which the calls are made did the trick for me... $(document).ready(function() { $(".imageSlider").jCarouselLite({ btnNext: ".imageSlider .next", bt

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-14 Thread huphtur
Still nothing. http://thehotcrew.com/acccar/ I made the first and second section identical. The first carousel (that's shown on load) works fine. The second (collapsed on load) doesn't show. On Jul 14, 12:27 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > you have a javascript error in ur pa

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-14 Thread Ganeshji Marwaha
you have a javascript error in ur page that is causing u the problem... In the snippet below you have a leading comma after the speed:500. After removing that it works fine. $(".imageSlider").jCarouselLite({ btnNext: ".imageSlider .next", btnPrev: ".imageSlider .prev", visible: 1, speed: 500, })

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-13 Thread huphtur
I added the image dimensions and even gave the ul container some height, with no result: http://thehotcrew.com/acccar/ On Jul 13, 2:58 pm, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > hey huphtur, > > If you are using images with jCarouselLite, just give it the width and the > height attribut

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-13 Thread huphtur
Upgraded to latest version, still no show: http://thehotcrew.com/acccar/ On Jul 13, 2:13 pm, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > oops, forgot to mention - also get the latest version from the site. > > http://www.gmarwaha.com/jquery/jcarousellite/js/jcarousellite_0.3.1.p... > > -GTG

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-13 Thread Ganeshji Marwaha
oops, forgot to mention - also get the latest version from the site. http://www.gmarwaha.com/jquery/jcarousellite/js/jcarousellite_0.3.1.pack.js -GTG On 7/13/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: hey huphtur, If you are using images with jCarouselLite, just give it the width and t

[jQuery] Re: Accordion + jCarouselLite Bug?

2007-07-13 Thread Ganeshji Marwaha
hey huphtur, If you are using images with jCarouselLite, just give it the width and the height attribute. That should do the trick. Eg: Lemme know if it worked for u. -GTG On 7/13/07, huphtur <[EMAIL PROTECTED]> wrote: I'm trying to use both Accordion and jCarouselLite plugins but am exp