You can also see the demo / code here. [in case the iframe gets blocked]
How it works
Structure:
Accordion
-- AccordionPage
------AccordionHeader
------AccordionContent
-- AccordionPage
------AccordionHeader
------AccordionContent
Logic:
On-click of Header - hide all 'content' and display the 'content' which is a sibling of the header.
Javascript:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code by Vikram - 8bitmemories.blogspot.com | |
$(document).ready(function () { | |
$('.accordionContent').hide(); | |
$('.accordionHeader').on('click', function (e) { | |
e.preventDefault(); | |
$('.accordionContent').hide(100); | |
$(this).next('.accordionContent').fadeIn(200); | |
}); | |
}); |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.