MyBB Community Forums

Full Version: Inline Thread Moderation - broken - again!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi again

I can't do anything with 'Inline Thread Moderation' again!

The 'Go' button stays at 0

I've got jquery conflict codes set up - or maybe not!

Can someone take a look?

www.vwcamper.net/forum


Thanks
May be for me but your site is taking infinite to load ...
Can't see any load problems my end, so interesting.
First you are loading the jQuery library twice. Secondly the noConflict line needs to be the next line after you load jQuery. Third, you're trying to do a jQuery function outside of a script tag.
Wow! Thanks!

Any chance you could should me exactly what you mean?

I.E. Whatever I've got and how it should look.

Really appreciate your help
Find this in headerinclude:
<script src="http://code.jquery.com/jquery-latest.js"></script> 
jQuery(function($) { $(".close").click(function () {
  $(".avviso").fadeOut("slow");
  }); });<script src="http://code.jquery.com/jquery-latest.js"></script> 

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

Replace with
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function($) { $(".close").click(function () {
  $(".avviso").fadeOut("slow");
  }); });
</script>
Thank you for your kind reply. I've changed the code, as you suggest but it's made no difference.

Turns out I had *another* query in my footer.

Adding : <script type="text/javascript">jQuery.noConflict();</script> ----- made it all work again.

Many thanks for your help dragonexpert