CodeCanyon

Left & Right Arrow Not Working in Jquery Horizontal Image Scroll Bar

no-thumbnail
companywebdesign Recent Posts
Threads Started
2 posts
  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
companywebdesign says

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.

3370 posts
  • Australia
  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Interviewed on the Envato Notes blog
  • Microlancer Beta Tester
  • Sold between 1 000 and 5 000 dollars
Australia says

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

no-thumbnail
companywebdesign Recent Posts
Threads Started
2 posts
  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
companywebdesign says

Thank you. Tried that and It did not work.

Thank s for trying


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
3370 posts
  • Australia
  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Interviewed on the Envato Notes blog
  • Microlancer Beta Tester
  • Sold between 1 000 and 5 000 dollars
Australia says

Perhaps ask Webtako himself.

32 posts
  • Bought between 1 and 9 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 50 and 99 users
  • Sold between 10 000 and 50 000 dollars
  • United States
robocreatif says
$(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.

by
by
by
by
by