Hi,
I'm working on a wordpress based website and I've just integrate
a javascript that canceled all my jQuery scripts effects.
So I used the jquery no conflict mode as you can see below. Most of
my jquery effects are working again except the two that are linked
with an external sheet (tablesorter & fullpage).
Do you guys have any idea of what should I do?
Thank you in advance!
David
PS: console retuns:
HEADED.PHP
FOOTER.PHP
-
<script>
-
-
-
$j(document).ready(function()
-
{
-
$j("#example_table").tablesorter();
-
}
-
);
-
-
$j(document).ready(function() {
-
$j('#fullpage').fullpage();
-
});
-
-
-
-
$j(document).ready(function(){
-
-
if($j('ul.bxslider li').length
== 1){
-
$j('.bx-next').addClass('disabled');
-
}
-
-
});
-
-
-
-
$j("#maincat2 h2").mouseenter(function()
-
{
-
$j(this).next(
".featured-image" ).css( "opacity",
"1" );
-
});
-
-
$j("#maincat2 h2").mouseleave(function()
-
{
-
$j(this).next(
".featured-image" ).css( "opacity",
"0" );
-
});
-
-
$j("#maincat1 .featured-image").mouseenter(function()
-
{
-
$j(this).next(
".featured-image-caption" ).next('h2').css(
"opacity", "1" );
-
});
-
-
-
$j("#maincat1
.featured-image").mouseleave(function() {
-
$j(this).next(
".featured-image-caption" ).next('h2').css(
"opacity", "0" );
-
});
jquery.fullpage.js
-
(function($) {
-
$.fn.fullpage =
function(options) {
-
// Create some defaults,
extending them with any options that were provided
-
options = $.extend({
-
"verticalCentered": true,
-
'resize': true,
-
'sectionsColor' : [],
-
'anchors':[],
-
'scrollingSpeed': 400,