/    Sign up×
Community /Pin to ProfileBookmark

[RESOLVED] Multiple jQuery on same page/no conflict

I have a page that will have a jquery photo gallery and a juqery slider among other things. The menu also will use jQuery.
For menu, I have a code resembling this:
$(‘.navbar li a’).click(function() {
target = $(this).attr(‘data-target’);
$(‘html, body’).animate({
scrollTop: $(target).offset().top
}, 800);
});

and then I thought of using easyslider for the photo gallery:
$(document).ready(function(){
$(“#slider”).easySlider({
auto: true,
continuous: true
});
});

but now the slider works, not the menu. Search sent me to do this:
var $j = jQuery.noConflict();

$j(document).ready(function(){
$j(“#slider”).easySlider({
auto: true,
continuous: true
});
});

I’ve called the jquery.js file only once and all the js code is in the same html file instead of creating a separate .js file for it.
but still the menu doesn’t work. I can’t seem to understand how to have all jQuery items working. Please help.

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@peezyOct 29.2013 — You should wrap your code in the [code] bracket so it will be easier for people to read.

Also, what does the rest of the file look like?
×

Success!

Help @Divyakedia spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.28,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...