For the life of me I can't find a good accordion-style script for revealing and hiding information. I'm hoping the image below can accurately illustrate the kind of thing I'm looking to accomplish.
The image is a before and after screenshot. When the user clicks on the "Expand" button in the first image (or on anywhere on that banner dark green/blue banner), I would like the content of that full-width banner to extend and push (scroll) all of the content below it down to make room.
Then in the after screenshot there is a "Close" button that I would like to collapse that banner to it's original state, and all of the information below it will scroll back up into view.
I'm very competent in the HTML and CSS involved in making this happen, but I'm having a hard time finding some javascript designed to do this. Any help?
Above very good description as well as nice examples are given by user. I tried so many times by myself to expand and collapse row or column in HTML to use in my online shopping project. I was took help of e books and guides from Google and w3school.com, I like above examples and very vast description of HTML controls.
However, the script currently uses plain text as the toggle for the animation. How can I change it so that instead of swapping in the text "Expand" and "Collapse" whenever the link is clicked, it swaps the class of the element instead?
Here's the same script running on a page that also uses a lightbox script. Both scripts are broken on this page. Remove one or the other fixes the opposite one. You'll notice that the accordion expands but doesn't collapse, and the image of the projector loads a new page instead of a lightbox popup.
I really don't suggest loading more than one javascript library at the same time. If you would like to use lightbox, try the jQuery version instead. http://leandrovieira.com/projects/jquery/lightbox/
In a very good description, and fine examples are given of user.However, the script is currently using the plain text as switches to animation. Here the same script that runs on a page that also uses a lightbox script.
For the life of me I can't find a good accordion-style script for revealing and hiding information. I'm hoping the image below can accurately illustrate the kind of thing I'm looking to accomplish.
http://www.iavi.com/example.jpg
The image is a before and after screenshot. When the user clicks on the "Expand" button in the first image (or on anywhere on that banner dark green/blue banner), I would like the content of that full-width banner to extend and push (scroll) all of the content below it down to make room.
Then in the after screenshot there is a "Close" button that I would like to collapse that banner to it's original state, and all of the information below it will scroll back up into view.
I'm very competent in the HTML and CSS involved in making this happen, but I'm having a hard time finding some javascript designed to do this. Any help?
So it's
Unfortunately I'm getting an undesired affect when try to fill it with content. The content in the div#box doesn't stay inside when it's collapsed.
http://www.iavi.com/csstricks.html
I added overflow:hidden; to #box and that seemed to take care of the problem.
I've almost finished implementing this script into my site.
http://www.iavi.com/index_expand.asp
However, the script currently uses plain text as the toggle for the animation. How can I change it so that instead of swapping in the text "Expand" and "Collapse" whenever the link is clicked, it swaps the class of the element instead?
When it is clicked, a class of "active" is added.
If you would like to remove the text changes. Remove:
".text("Collapse")" and ".text("Expand")" from the javascript
I've run into a problem though. I think the script is clashing with a lightbox script I have running.
Here's the accordion script running just fine on one page.
http://www.iavi.com/items.asp?Cc=LGLCD
Here's the same script running on a page that also uses a lightbox script. Both scripts are broken on this page. Remove one or the other fixes the opposite one. You'll notice that the accordion expands but doesn't collapse, and the image of the projector loads a new page instead of a lightbox popup.
http://www.iavi.com/itemdesc.asp?ic=22LD350C
Here are the scripts that are running for the light box.
Any idea where the problem is?
http://leandrovieira.com/projects/jquery/lightbox/
That way you will avoid javascript conflicts.