вопрос
Привет всем ребят подскажите пожалуйста что не так с скриптом
[complaint]Видео не работает?[/complaint] </span>
<script type="text/javascript">
$(window).load(function () {
$(document).ready(function() {
$(".tab_content").hide();
$(".tabssss li:first-child").addClass("active");
$(".tab_content:first-child").show();
$(".tabssss li").click(function() {
if (!$(this).hasClass("active")) {
$(this).parent().find("li").removeClass("active");
$(this).parent().next().find(".tab_content").hide();
var activeTab = $(this).find("a").attr("href");
$(this).addClass("active");
$(this).parent().next().find(activeTab).fadeIn();
}
return false;
});
});
});
</script>