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
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
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
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
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
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
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
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
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
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
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
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
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
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
>
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
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...
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?
OK, thanks
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
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
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
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/
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.
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
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
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-
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
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
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
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
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
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
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
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
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
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
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
Of course, I assumed that you needed nested accordions - so that inner
uls can be made into accordions as well.
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({
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
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
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
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
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
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
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
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
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:
>
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,
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
[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
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");
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
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
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'
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
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
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
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
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
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(
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(
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
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
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
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
Demo at http://vizualbod.com/accordion/demo.html
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
Lovely demo of this bug is at http://vizualbod.com/accordion/demo.html
It is still crashing in IE7.
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.
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
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
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
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
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
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
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
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
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
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
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
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,
})
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
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
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
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
86 matches
Mail list logo