Left & Right Arrow Not Working in Jquery Horizontal Image Scroll Bar. Site Address: http://www.mortgagetrust.ca
Can someone check the site and let me know how to fix this.
get firebug for firefox
you have 2 errors on index page:
$(document).ready(
function() {
//initialize scroller
$(".container").wtScroller();
//initialize lightbox for scroller
$("a[rel='scroller']").wtLightBox();
}
);
$ is not a function
Network error
"NetworkError: 404 Not Found - http://mortgagetrust.ca/wp-content/uploads/2012/07/logo.png"
you could try
$(function() {
//initialize scroller
$(".container").wtScroller();
//initialize lightbox for scroller
$("a[rel='scroller']").wtLightBox();
);
Im no js expert tho
Thank you. Tried that and It did not work.
Thank s for trying
SportTipsWorld said
get firebug for firefoxyou have 2 errors on index page:
$(document).ready( function() { //initialize scroller $(".container").wtScroller(); //initialize lightbox for scroller $("a[rel='scroller']").wtLightBox(); } );$ is not a function Network error"NetworkError: 404 Not Found - http://mortgagetrust.ca/wp-content/uploads/2012/07/logo.png"you could try
$(function() { //initialize scroller $(".container").wtScroller(); //initialize lightbox for scroller $("a[rel='scroller']").wtLightBox(); );Im no js expert tho
Perhaps ask Webtako himself.
$(function() {
//initialize scroller
$(".container").wtScroller();
//initialize lightbox for scroller
$("a[rel='scroller']").wtLightBox();
);
That’ll actually give you a syntax error. Usually when $ isn’t a function, it could be one of a few things:
- You’re trying to run the script before loading jQuery
- You’re linking to a non-existent jQuery file.
- You’re using jQuery.noConflict, which is removing the capability of using the $ function.
It’s most likely the latter, in which case you should instead use:
jQuery(function ($) {
});
Then you can use $ inside that.
