Список разделов › phpBBex 1.x (поддерживается) › Пожелания 1.x
ЖЪРЧИК:спойлер, который рыскрывает "Быстрый ответ" юзеру под указанным постом.
Эт я не подумалrbooze:А если требуется процитировать несколько постов?
$('.post a[href="#postform"]').click(function() {
$('#postform').insertAfter($(this).parents('.post'));
});
$('.post a[href="#postform"]').click(function() {
$('#postform').insertAfter($(this).parents('.post'));
if(!$('#postform input[name="reset"]').length) {
$('#postform input[name="post"]').after(' <input type="reset" name="reset" value="Отмена" class="button1 default-submit-action">');
$('#postform input[name="reset"]').click(function() {
$('#postform').insertAfter($('.rules'));
$('#message').val('');
$(this).remove();
});
}
});
jQuery( document ).ready(function( $ ) {
...
});
<script>jQuery( document ).ready(function( $ ) {
$('.post a[href="#postform"]').click(function() {
$('#postform').insertAfter($(this).parents('.post'));
if(!$('#postform input[name="reset"]').length) {
$('#postform input[name="post"]').after(' <input type="reset" name="reset" value="Отмена" class="button1 default-submit-action">');
$('#postform input[name="reset"]').click(function() {
$('#postform').insertAfter($('.rules'));
$('#message').val('');
$(this).remove();
});
}
});
});</script>