Quote:
Originally Posted by AndrewGSW
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.