Hello, I have a question about this @Daemon script:
- Code:
jQuery(window).load(function() {
var daemon = $('a[href^="/post?t="]').first().attr('href');
$('#quick_reply input[name="post"]').on('click', function(post) {
post.preventDefault();
var valor = $('#text_editor_textarea').sceditor('instance').val().replace(/\s/g, '').length;
if (valor == 0) {
alert("Seu post está vazio")
} else if (20 > valor) {
alert("Você precisa digitar pelo menos mais " + (20 - valor) + " caracteres, por favor, não faça flood")
} else if (15000 < valor) {
alert("Seu post passou de 15000 caracteres, diminua-o")
} else if (20 <= valor && valor <= 15000) {
$(this).before('<span id="qr_posting_msg">' + ' <img src="http://i.imgur.com/hujM7Fc.gif" alt="Enviando Resposta Rápida - Aguarde" title="Enviando Resposta Rápida - Aguarde">' + ' <strong>Enviando Resposta Rápida - Aguarde</strong>' + '</span>');
$.post(daemon, {'message': $('#text_editor_textarea').sceditor('instance').val(),'post': 'Enviar','attach_sig': '1'}, function(e) {
var href = $(e).find('p.message a:first').attr('href');
$.get(href, function(daemon) {
$(daemon).find('.post:last').hide().insertAfter('.post:last').slideDown('fast', function() {
$('html, body').animate({scrollTop: $('.post:last').offset().top}, 500)
})
});
$('#text_editor_textarea').sceditor('instance').val('');
$('#qr_posting_msg').remove()
})
}
})
});
Last edited by Tonight on August 8th 2015, 11:32 am; edited 1 time in total