I've been attempting to achieve a sliding effect for some text coming in from the left using .animate, but it's not working as expected.
Styling (CSS)
.body #header > a {
font-family: Georgia, Courier, Verdana;
font-size: 30px;
padding: 24px;
border-left: 3px solid red;
margin-left: -200px;
...
}
Javascript (jQuery)
$("body").ready(function () {
$('#header a').animate({"margin-left": '+=200'});
I'm also including the HTML snippet for linking the jQuery file I downloaded (it works with slide but only on normal .slide).
<script type='text/javascript' src='js\jquery-1.9.1.js'></script>