MyBB Community Forums

Full Version: jquery and MyBBj
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone successfully use jquery alongside MyBB? I would like to do some things with it, but it stops MyShoutBox from working. I don't know if it's just that plugin or something with MyBB.
Add the following code in headerinclude template where jQuery used.
<script type="text/javascript">jQuery.noConflict();</script>
(2012-02-10, 05:35 PM)Yaldaram Wrote: [ -> ]Add the following code in headerinclude template where jQuery used.
<script type="text/javascript">jQuery.noConflict();</script>

Thank you, I will give that a try Wink
Hey - that worked, thank you!

Yaldaram is correct, and...

When using code that calls jQuery you will (probably) need to:
(for example)

find
    $(".editor").editInPlace({

replace
    jQuery(".editor").editInPlace({