I have compiled some code at https://codepen.io/fjenpen/pen/pROPov but for some reason, when I check it out on https://jsfiddle.net/z05d3ufq/, the #flexiselDemo3 element is breaking?
$('#flexiselDemo3 a').click(function(e) {
var target = $(this).attr("href");
$(".main .content").not(target).hide();
$(target).show();
return (false);
});
$(".main .content").hide();
var initialTarget = "#Section1";
if (location.hash.length > 0) {
initialTarget = location.hash;
}
$(initialTarget).show();