View Single Post
Old 09-11-2012, 01:15 AM   PM User | #3
thoroprod
New to the CF scene

 
Join Date: Sep 2012
Posts: 4
Thanks: 1
Thanked 0 Times in 0 Posts
thoroprod is an unknown quantity at this point
Quote:
Originally Posted by AndrewGSW View Post
I assume this:

Code:
$().UItoTop({ easingType: 'easeOutQuart' });
should be

Code:
$('#someelement').UItoTop({ easingType: 'easeOutQuart' });
// or..
$.UItoTop(defaults);
// or 
$('#someelement').UItoTop(defaults);
You are also loading the jQuery library twice - it should only be loaded once.

it didnt make any difference. thanks though.
thoroprod is offline   Reply With Quote