I want to design a dialog box that contains an accordion with 3 sections, does anyone knows how to achieve this?. I'm trying with JQuery accordion example but still not success on it. I appreciated your ideas around this.
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- jQuery add and remove delay
- Include empty value fields in jQuery .serialize()
- Disable Browser onUnload on certain links?
- how to get selected text from iframe with javascri
check out this link, about half way down the page is a good example
The easy way
So for a three item section
You'll probably want to customize.
Good luck!
If you're trying to embed it in a popup
alert()
box, you cannot do so. Your best bet is to create your own modal popup.Using jQuery UI's dialog http://jqueryui.com/demos/dialog/ is a good base, with lots of online documentation and use, but you may just want to create an overlay on your own. This just means to create a DIV you place absolutely, with jQuery, over everything else.
with CSS for the modal window in your stylesheet something like
and so on.