I have a page that looks something like this:
+-------------------------------------------+ | | | +----------------------------+ +--------+ | | |main | |sidebar | | | | | |+------+| | | | | ||jquery|| | | | | || tabs || | | | | |+------+| | | | | | | | | | | | | | | +----------------------------+ +--------+ | +-------------------------------------------+
in which a have jQuery tabs elements with 4 tabs. I would like to have one button that would show all 4 tabs at the same time on the whole page with a close option to get it back as it was before. Something like this:
+-------------------------------------------+ | | | +------------------+ +------------------+ | | | tab 1 | | tab 2 | | | | | | | | | +------------------+ +------------------+ | | | | +------------------+ +------------------+ | | | tab 3 | | tab 4 | | | | | | | | | +------------------+ +------------------+ | | close | +-------------------------------------------+
Any idea on how to go about doing this?