2014-01-18, 07:51 AM
2014-01-18, 08:20 AM
i had same problem
re-upload all jcripts files
re-upload all jcripts files
2014-01-18, 08:28 AM
This often happens if you have jQuery conflict in your board.
Check if your expand collapse buttons in index are working or not. If it is not then you are definitely under conflict.
Rectification:
1. Check and remove if you have included multiple jQuery library.
2. Check you have implemented noConflict(); code properly.
Further reference:
http://forums.icyboards.net/showthread.php?tid=4196
http://forums.icyboards.net/showthread.php?tid=6657
Check if your expand collapse buttons in index are working or not. If it is not then you are definitely under conflict.
Rectification:
1. Check and remove if you have included multiple jQuery library.
2. Check you have implemented noConflict(); code properly.
Further reference:
http://forums.icyboards.net/showthread.php?tid=4196
http://forums.icyboards.net/showthread.php?tid=6657
2014-01-18, 08:47 AM
I dont know anything about javascript or scripting. Can you help me ?
this is my headerinclude
<script>jQuery.noConflict();</script>
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/prototype.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery(".catdesc").hide();
jQuery(".cattitle").live('mouseover mouseout', function(event) {
var catdesc = jQuery(this).parent().children('.catdesc');
var content = catdesc.text();
if (content !== "") {
if (event.type == 'mouseover') {
catdesc.fadeIn('slow');
} else {
catdesc.stop(true, true).fadeOut('slow');
}
}
});
});
</script>
{$stylesheets} <script type="text/javascript">jQuery.noConflict();
jQuery(function($) { $(".close").click(function () {
$(".avviso").fadeOut("slow");
}); });</script> <script src="http://code.jquery.com/jquery-latest.js"></script> {$avvisospiti}
<script type="text/javascript">
<!--
var cookieDomain = "{$mybb->settings['cookiedomain']}";
var cookiePath = "{$mybb->settings['cookiepath']}";
var cookiePrefix = "{$mybb->settings['cookieprefix']}";
var deleteevent_confirm = "{$lang->deleteevent_confirm}";
var removeattach_confirm = "{$lang->removeattach_confirm}";
var loading_text = '{$lang->ajax_loading}';
var saving_changes = '{$lang->saving_changes}';
var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
var my_post_key = "{$mybb->post_code}";
var imagepath = "{$theme['imgdir']}";
// -->
</script>
{$newpmmsg}
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/verque/js/jquery.cookie.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/verque/js/sidebar.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery('a[href=#top]').click(function(){
jQuery('html, body').animate({scrollTop:0}, 'slow');
return false;
});
});
</script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($)
{
$('#login-trigger').click(function(){
$(this).next('#login-content').slideToggle();
$(this).toggleClass('active');
if ($(this).hasClass('active')) $(this).find('span').html('▲')
else $(this).find('span').html('▼')
})
});
</script>
this is my headerinclude
2014-01-18, 09:52 AM
May we have your site link where the problem happened?
2014-01-18, 09:52 AM
2014-01-18, 09:58 AM
As I said, there are two libraries included:
and ...
I suggest you remove both the lines, including latest library is a bad idea as it can go incompatible with your scripts anytime during update...
and include this:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
and ...
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
I suggest you remove both the lines, including latest library is a bad idea as it can go incompatible with your scripts anytime during update...
and include this:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">jQuery.noConflict();</script>
2014-01-18, 10:01 AM
Thanks man.
It's working now but I think it overrides my stuff
It's working now but I think it overrides my stuff
2014-01-18, 10:07 AM
This is another issue.
You have padding for your textarea. Its the well-known textarea overlap issue. There are many fixes available here in threads if you search a little.
For a quick fix just open your global.css and find:
and add just after that line:
I believe that will handle the issue.
You have padding for your textarea. Its the well-known textarea overlap issue. There are many fixes available here in threads if you search a little.
For a quick fix just open your global.css and find:
textarea {
and add just after that line:
box-sizing: border-box;
I believe that will handle the issue.