I'm not sure if that's to do with Flare 2019, the side nav target, or, heaven forbid(!), the fact that I just suck at scripting...
TIA!
Code: Select all
<script src="scripts/jquery.tablesorter.js">
</script>
<script src="scripts/jquery.stickytableheaders.js">
</script>
<script>
$(document).ready(function()
{
$("table").tablesorter();
$("table").stickyTableHeaders();
$("ul.navigation").on("loaded", function () {
var divs = document.getElementsByClassName('MCDropDownBody');
for (var i = 0; i != divs.length; i++) {
divs[i].style.display = 'block';
};
});
}
);
</script>
</body>
</html>