MyBB Community Forums

Full Version: quick reply not clearing box and unloading img
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well since 1.8 ive been having some issues with my quick reply box. I have no idea if this is being caused by a plugin or there is just something broken all together. Well anyways any possible fix for this?
[img] http://i.imgur.com/W5eua7X.png[/img]
you have to give forum url & a test user account so that someone can check the referred issue
OK the forum URL is: http://mmorpgcreation.com/index.php

Test account is:

Username: test
Pass: 123456
I've not faced any issue in using quick reply (~) [using firefox v34]

however, it would be better to remove minified jquery (jquery-latest.min.js) and related no conflict codes
hmm when i use the quick reply though it never clears the textbox and keeps the loading icon loading forever...
but the post itself works.

it was the minified and latestmin stuff though now my menu is broken once i remove them...... XDD what do do =[.
^ deactivate and uninstall sceditor. it is already provided by MyBB 1.8.x
and remove any no conflict codes you notice in headerinclude & header templates
2 things 1 when i disable the plugin sceditor it doesn't load at all for regular posts or quick replies.

2 this script works now but i think its preventing the JQ still form loading correctly.

<script>
jQuery(document).ready(function($) {

// Search Box
$('input#quick_search')
.focus(function() {
$('.search_adv').stop(true, true).fadeIn(100);
})
.blur(function() {
$('.search_adv').stop(true, true).fadeOut(100);
});


// Login Button
$('.login').click(function() {
$('#mask').fadeIn(100);
$('.model').delay().fadeIn(100);
});


// Model Box
$('#mask, .close').click(function() {
$('.model').fadeOut(100);
$('#mask').fadeOut(100);
});
$(window).resize(function(){
$('.model').css({
left: ($(window).width() - $('.model').outerWidth())/2,
top: ($(window).height() - $('.model').outerHeight())/2
});
});
$(window).resize();

$(window).bind('scroll', function() {
if ($(window).scrollTop() > 105) {
$('#panel').css({
position: 'fixed',
top: '0px'
});
}
else {
$('#panel').css({
position: 'absolute',
top: '105px'
}); }
});

// User Links
$('ul.user_links li')
.mouseenter(function() {
$(this).children('ul').stop(true, true).fadeIn(100);
})
.mouseleave(function() {
$(this).children('ul').stop(true, true).delay(100).fadeOut(100);
});

});
</script>
^ try changing jQuery(document).ready(function($) to $(document).ready(function()
by default, sceditor doesn't load for quick replies. it is loading for posting new replies & new threads
the change didn't help and also sceditor isn't working for any of those.
^ now everything looks normal for me (~). try hard refreshing your browser (eg. press CTRL + F5) or try with other browser.
Pages: 1 2