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
<!-- Reference the jQueryUI theme's stylesheet on the Google CDN. Here we're using the "Start" theme --> | |
<link type="text/css" rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/themes/start/jquery-ui.css" /> | |
<!-- Reference jQuery on the Google CDN --> | |
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<!-- Reference jQueryUI on the Google CDN --> | |
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> | |
<script type="text/javascript"> | |
jQuery(document).ready(function($) { | |
//Put the WebPart Title for all the Web Parts you wish | |
//to put into the jQuery UI Accordion into the array below. | |
Accordion(["Web Part Title 1","Web Part Title 2","Web Part Title 3"]); | |
}); | |
function Accordion(webPartTitles) | |
{ | |
for(index in webPartTitles) | |
{ | |
var title = webPartTitles[index]; | |
$("#accordion").append('<h3>'+title+'</h3>'); | |
$("#accordion").append('<div id="Tab'+index+'"></div>'); | |
$("span:contains('"+title+"')").each(function(){ | |
if ($(this).text() == title){ | |
var webPart = $(this).hide().closest("span").closest("[id^='MSOZoneCell_WebPart']"); | |
if ($(webPart).contents().html() != undefined) | |
{ | |
webPart = $(webPart).contents().appendTo($("#Tab" + index)); | |
} | |
} | |
}); | |
} | |
$("#accordion").accordion({ heightStyle: "content" }); | |
} | |
</script> | |
<div id="accordion"></div> |