$(document).ready(function () { $('.reply-button').each(function (index ) { $('.formclas').fadeToggle(); });});bu arada html kodu butonun
<!-- REPLY BUTTON --><div class="reply-button bubble-ornament blue"> <i class="icon-action-undo reply-icon"></i></div><!-- /REPLY BUTTON -->
$(.reply-button).each(function(){
$(this).on(click, function(){
$(.formclas).slideToggle();
});
});
Bu şekilde deneyin.