2016-05-09, 01:24 PM
(This post was last modified: 2016-05-09, 08:25 PM by thelovelyone.)
(2016-05-03, 02:21 AM)Burned Designs Wrote: If your having trouble in 1.8 try removing the noConflict() in the jQuery code 1.8 uses the jquery library that doesn't require noConflict()
so use this
<script type="text/javascript"> jQuery(document).ready(function($) { $(".tab_content").hide(); $("ul.tabs li:first").addClass("active").show(); $(".tab_content:first").show(); $("ul.tabs li").click(function() { $("ul.tabs li").removeClass("active"); $(this).addClass("active"); $(".tab_content").hide(); var activeTab = $(this).find("a").attr("href"); $(activeTab).fadeIn(); return false; }); }); </script>
Works! Thanks, this looks awesome!
Edit: it does break myalerts popup.
Edit 2: If it breaks Myalerts, just remove or dont add this from headerinclude:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js">
</script>