MyBB Community Forums

Full Version: Quick Edit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Quick edit will not work, does anyone know a fix?

Forum url: http://advertisingmania.info
test user account is required ...
Username: Test
Password: test
^ incorrect password !!?
For the third thread in a row, the cause is that you've added javascript to your forum which is breaking the MyBB javascript. I'll repeat what I said in your last thread.

If you use jQuery you have to call jQuery.noConflict() and change all occurrences of $ to jQuery in any jQuery code you've added.

You've got this jQuery code on your page:

$(document).ready(function(){
    $("#notifierBar").hide();
    var Language = 'en';
    $(".translate").click(function(){
        $("#notifierBar").slideDown(200);
        var Language = $(this).attr("id");
        $.ajax({
            url:'ajax_trans.php?act=updateLang',
            data:'language='+Language,
            type:'GET',
            success:function(data){
                $("body").translate('en', data);
                $("#notifierBar").slideUp(600);
                }
            })
    });
    $("body").translate('en', Language);
});

You have to change the $ to jQuery otherwise it will not work.