I am trying to edit this script to remove its function that you need to click the tab before showing the content. I want to display the default tab to display. Please assist! Here is the code:
<script>
$(document).ready(function() {
$("#tabs li").click(function() {
$("#tabs li").removeClass('active');
$(this).addClass("active");
$(".Tablist11").hide();
var selected_tab = $(this).find("a").attr("href");
$(selected_tab).fadeIn();
return false;
});
});
</script>