MyBB Community Forums

Full Version: Latest Jquery breaks Mybb Javascripts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was doing some template modifications, and I needed some js from bootstrap to make a dropdown menu, and for that i needed the last Jquery to be in inluded in the templates. I put the script in the header template and I continue editing.
When I get at editing the threadlist templates I notice that the checkbox for the multimoderation is not working, at first i think it's just the js or the css from bootstrap, but removing them does nothing. But when I tried to remove
<script src="http://code.jquery.com/jquery-latest.js"></script>

Everything worked just fine, exept the js I needed from Bootstrap...

Does this means that I can't use other Js scripts exept the ones Mybb already has?
I'm not really a Javascript genius, wich code should I use and how? I tried copypasting some of them in my header template but it doesn't look like I can get it to work.
From the example:
<script src="prototype.js"></script>
<script src="jquery.js"></script>
<script>
     jQuery.noConflict();
</script>

You would put this after both of your libraries (ie: your jquery-latest.js and whatever else):
<script>
     jQuery.noConflict();
</script>
It works O:
Thank you!