I have a little problem and got tired of trying to solve it. The Jquery easing code works prefectly on Jsfiddle, but don't work on my testign server on the localhost anymore. whenever I removed the Jquery easing effect, things go back normal and the code works fine...
I'm wondering is there something wrong with the code? is that something related to OnLoad function or something...!!
great help would be appreciated.
<head>
<script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js" type="text/javascript" ></script>
<script src="http://code.jquery.com/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function($) {
$('.topnav li').find('a[href]').parent().each(function() {
var li = $(this),
a = li.find('a'),
div = $('<div>' + '<\/div>');
li.hover(function() {
a.stop().animate({marginTop: '-64'}, 600, "easeOutBack");
},
function() {
a.stop().animate({marginTop: '0'}, 500, "easeOutBack");
})
.append(div);
});
});
here is the code:enter link description here
Thanks,

<script>? either a local copy or through a content delivery network (CDN) , see docs.jquery.com/Downloading_jQuery – ianace Jan 31 at 6:58headtag? – Amar Palsapure Jan 31 at 7:10