MyBB Community Forums

Full Version: JQuery Conflict in Mybb!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I add this to footer templates

<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript"  src="http://www.mybb.vn/community/jscripts/vsk_keyboard.js"></script>
<script type="text/javascript">
    <!--
    	var vsk_only = false;
    	var vsk_allpassword = true;
    // -->
    </script>

it worked, but when I click login, it jumps to Longin page!

The keyboaed not works again if I remove:
http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js
how to fix? Sad
EDIT: Oops. I messed up on some stuff. You should wait for someone who gets it right, unlike me Rolleyes.
Wrong section I guess Sad
Change this;
<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript"  src="http://www.mybb.vn/community/jscripts/vsk_keyboard.js"></script>
to this;
<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript"  src="http://www.mybb.vn/community/jscripts/vsk_keyboard.js"></script>
(2012-10-16, 06:38 AM)Yaldaram Wrote: [ -> ]Change this;
<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript"  src="http://www.mybb.vn/community/jscripts/vsk_keyboard.js"></script>
to this;
<script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script type="text/javascript"  src="http://www.mybb.vn/community/jscripts/vsk_keyboard.js"></script>
thanks you! but the keyboard not work! I will find other ways!
I have same problem with editor.js but this solution didn't solve my problem.
Thanks Yaldaram, that fixed my woes with quick edit, moderation options and relative time. Reps added to you.