I am trying to create an animation for an element that moves to the left when hovered over, but the code I thought was correct doesn't seem to be working in my fiddle.
Here is the link to the fiddle I created:
https://jsfiddle.net/feb8rdwp/3/
Based on this example from W3Schools, it should work with this simple code: http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_animation1
$(".Submit a").mouseover(function(){
$(".fadeInLeftBig").animate({left: '750px'});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="animation fadeInLeftBig animated"><img alt="" src="http://younggraphics.com.au/Portals/0/images/skin/car.png" /></div>
<div class="Submit"><a id="dnn_ctr461_FormsView_lnkSubmitEmail" class="Button_default" href='javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("dnn$ctr461$FormsView$lnkSubmitEmail", "", true, "", "", false, true))'>Submit</a></div>