wersja skryptu MyBB:1.6.13
adres forum:http://eqteam.net/
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Gdy klikam w pokaż to nie ma tak jakby ukryj jest cały czas pokaż ale działa tylko chciałbym że jak ktoś otworzy to żeby potem pisało Ukryj a nie Pokaż
adres forum:http://eqteam.net/
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Gdy klikam w pokaż to nie ma tak jakby ukryj jest cały czas pokaż ale działa tylko chciałbym że jak ktoś otworzy to żeby potem pisało Ukryj a nie Pokaż
<div style="margin:20px; margin-top:5px">
<div class="quotetitle">
<b>Spoiler:</b>
<input type="button" value="Pokaż" style="width:45px;font-size:10px;margin:0px;padding:0px;" onclick="
if (this.parentNode.parentNode.getElementsByTagName('div')[1].style.display!= '')
{
this.parentNode.parentNode.getElementsByTagName('div')[1].style.display = '';
this.innerText = '';
this.value = 'Ukryj';
}
else
{
this.parentNode.parentNode.getElementsByTagName('div')[1].style.display = 'none';
this.innerText = '';
this.value = 'Pokaż';
}
" />
</div>
<div class="quotecontent" style="display: none;">{TEXT}</div>
</div>