wersja skryptu MyBB: 1.6.9
adres forum: www.insidery.eu
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Chciałem dodać sobie fajny slider do forum i nie mogę. Gdy wklejam javascript w headerinclude to wyskakuje mi błąd, że wykryto lukę bezpieczeństwa i nie wiem co mam zrobić.
Oto kod:
Gdzie tkwi błąd?
adres forum: www.insidery.eu
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Chciałem dodać sobie fajny slider do forum i nie mogę. Gdy wklejam javascript w headerinclude to wyskakuje mi błąd, że wykryto lukę bezpieczeństwa i nie wiem co mam zrobić.
Oto kod:
<script type="text/javascript">
$(document).ready(function() {
$activePage = $(".paging a:first").css("z-index", 1).addClass("active");
$(".image_reel a:first").fadeIn(500);
switchImage = function() {
var oldIdImg = $oldPage.attr("rel");
var activeIdImg = $activePage.attr("rel");
$oldImg = $(".image_reel a[rel="+(oldIdImg)+"]");
$oldImg.css("z-index", 0)
$activeImg = $(".image_reel a[rel="+activeIdImg+"]");
$activeImg.css("z-index", 1);
$(".paging a").removeClass("active");
$activePage.addClass("active");
$activeImg.fadeIn(500, function() {$oldImg.fadeOut(5);});
};
changeActive = function() {
play = setInterval(function() {
$oldPage = $activePage;
$activePage = $activePage.next();
if($activePage.length===0) {
$activePage = $(".paging a:first");
}
$activePage.addClass("active");
switchImage()
}, 2000);
};
changeActive();
$(".paging a").click(function() {
$oldPage = $activePage;
$activePage = $(this);
clearInterval(play);
switchImage();
changeActive();
});
$(".image_reel a").hover(function() {
clearInterval(play);
}, function() {
changeActive();
});
});
</script>
Gdzie tkwi błąd?
Jeśli Ci pomogłem naciśnij guzik POMÓGŁ lub dodaj PUNKT REPUTACJI