Newbie question.
We are using JQuery Tabs in SharePont 2013 online based on http://jqueryui.com/accordion/#no-auto-height
Sometimes SharePoint appends the URL and when that happens the script doesn't work.
The Original URL looks like: /a/SitePages/Step1.aspx
,
and the appended URL looks like: /a/_layouts/15/start.aspx#/SitePages/Step1.aspx
We found a script (on Hillbilly's blog) for JQuery Tabs implemented for SharePoint, and it works great, but it appends multiple web parts to the Content Editor web part.
We are only using one web part (Content Editor), and aren't appending additional web parts.
Hillbilly's script is here: http://www.sharepointhillbilly.com/Lists/Posts/Post.aspx?ID=42.
I think we need to add 'SetCookie' to the basic JQuery script to make it work, but what would that look like?
<script>
$(function() {
$( "#accordion" ).accordion({
heightStyle: "content"
});
</script>