04.05.2015, 14:40
wersja skryptu MyBB: 1.8.4
adres forum: http://4strike.c0.pl/index.php
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Witam, mam problem z jQuery a mianowicie dwa skrypty
oraz
adres forum: http://4strike.c0.pl/index.php
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Witam, mam problem z jQuery a mianowicie dwa skrypty
Kod:
http://4strike.c0.pl/images/audentio/neonglow/newfunctions.js
Kod PHP:
<script type="text/javascript">
jQuery(document).ready(function() {
//When page loads...
jQuery(".mem_content").hide();
jQuery(".memtab ul li:first").addClass("active").show();
jQuery(".mem_content:first").show();
jQuery(".memtab ul li").click(function() {
jQuery(".memtab ul li").removeClass("active");
jQuery(this).addClass("active");
jQuery(".mem_content").hide();
var activeTab = jQuery(this).find("a").attr("href");
jQuery(activeTab).fadeIn();
return false;
});
});
</script>