MyBB Community Forums

Full Version: Header Buttons FireFox Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
(2013-06-25, 06:04 PM)laie_techie Wrote: [ -> ]
(2013-06-25, 03:37 PM)JayVCCP Wrote: [ -> ]Disappointing to see that the users aren't very helpful here.

Been almost a month with no fix.
Thanks myBB!!

It's been two weeks, not "almost a month".

Still sucks that I can't get assistance either way Sleepy
(2013-06-14, 07:55 PM).m. Wrote: [ -> ]^ working for me !
Edit: it appears that your forum is loading multiple instances of jQuery. that needs to be cleaned.

.m. had said that you have multiple instances of jQuery which you do
have here

<script src="http://www.SimplicityForum.com/jscripts/jquery.js"></script>
jQuery v1.7.1
and
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
jQuery v1.10.1

Maybe try to fix this and see what happens
so it looks somthing like this

<script type="text/javascript" src="http://www.SimplicityForum.com/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="http://www.SimplicityForum.com/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="http://www.SimplicityForum.com/jscripts/popup_menu.js?ver=1600"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://www.SimplicityForum.com/jscripts/scrolltopcontrol.js"></script>
<script type="text/javascript" src="images/vhut/script/jqueryslidemenu.js"></script>
<script type="text/javascript" src="images/vhut/script/toggle.js"></script>
<script type="text/javascript" src="images/vhut/script/cookie.js"></script>
<script type="text/javascript" src="images/vhut/script/general.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>

then you may have to move

<script type="text/javascript">
jQuery.noConflict();
</script>

so you get
<script type="text/javascript" src="http://www.SimplicityForum.com/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="http://www.SimplicityForum.com/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="http://www.SimplicityForum.com/jscripts/popup_menu.js?ver=1600"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://www.SimplicityForum.com/jscripts/scrolltopcontrol.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>
<script type="text/javascript" src="images/vhut/script/jqueryslidemenu.js"></script>
<script type="text/javascript" src="images/vhut/script/toggle.js"></script>
<script type="text/javascript" src="images/vhut/script/cookie.js"></script>
<script type="text/javascript" src="images/vhut/script/general.js"></script>

I too am no expert, No where near an expert
but if some sayes to try something, maybe you should try first an report that it did not work

This is all that I could see that may cause problems. So just be patience and wait and maybe someone smarter then me (which could be just about any one) will answer you.
How do I remove the multiple instances of jQuery?
Pages: 1 2 3