You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

jQuery scrollable not working in FF/Chrome but IS working in IE Created Jul 14, 2010

This thread is solved

Views: 1268     Replies: 1     Last reply Aug 20, 2010  
You must login first before you can use this feature

Arj

Posts: 1

Registered:
Jul 14, 2010

jQuery scrollable not working in FF/Chrome but IS working in IE

Posted: Jul 14, 2010

Hi there,

I've been trying to implement this:http://flowplayer.org/tools/demos/scrollable/ on one of my sites.

I can get the minimal version of the horizontal scrollable to work (in all browswers) however, when I use the easing function to allow circular scrolling, it works in IE7/8 but NOT in FF/Chrome...

Help! Does anyone have any ideas why? It's driving me mad! The code that I'm using is as specified on the standalone page, as below.


$.easing.custom = function (x, t, b, c, d) {
	var s = 1.70158; 
	if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
	return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
}

// use the custom easing
$("div.scrollable").scrollable({easing: 'custom', speed: 700, circular: true});

BigDW

Posts: 1

Registered:
Aug 20, 2010

Works in IE and Chrome, but not in Firefox.

Posted: Aug 20, 2010

Reply to: jQuery scrollable not working in FF/Chrome but IS working in IE, from panesar1
Arj,

Have you figured this out? My problem is somewhat similar... I've implemented scrollable into a Drupal site and it works great using IE and Chrome, but not in Firefox. It seems as though my problem is with the circular attribute. If I take out the circular attribute everything works fine in Firefox.

Any help?