24.06.2015, 12:29
wersja skryptu MyBB: 1.8
adres forum: http://3w-gang.pl/index.php
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Witam, nie działa mi animowane zwijanie się działu. Ktoś wie co zrobiłem źle?
kod .js :
adres forum: http://3w-gang.pl/index.php
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Witam, nie działa mi animowane zwijanie się działu. Ktoś wie co zrobiłem źle?
kod .js :
Kod:
expopen = '.expcol_open';
expclose = '.expcol_close';
thead2 = '.thead';
$(expclose).on("click", function () {
thead = $(this).parent(thead2);
thead_id = $(this).parent(thead2).attr("id");
n = parseInt(thead_id.replace('th', ''), 10);
$("#expcol_box" + n).slideUp();
$(this).hide();
thead.children(expopen).show();
thead.animate({
"border-radius": "5px",
"opacity": "0.4"
});
$.cookie(n, "closed", {
expires: 365
});
return false;
});
$(expopen).on("click", function () {
thead = $(this).parent(thead2);
thead_id = $(this).parent(thead2).attr("id");
n = parseInt(thead_id.replace('th', ''), 10);
$("#expcol_box" + n).slideDown();
$(this).hide();
thead.children(expclose).show();
thead.animate({
"border-radius": "5px",
"opacity": "1"
});
$.cookie(n, "open", {
expires: 365
});
return false;
});