unable to select element by id
I have the strangest error, I'm running jquery-2.1.0.min.js
for some reason I can't animate an element when its selected by id.
- $(document).ready(function(){
- $("#sddm li").click(function(){
- $("#acuronlogo").animate({left:'250px'});
- });
- });
other functions such as .hide() will do work
- $(document).ready(function(){
- $("#sddm li").click(function(){
- $("#acuronlogo").hide();
- });
- });
.animate() is functional when I animate selecting by div
- $(document).ready(function(){
- $("#sddm li").click(function(){
- $("div").hide();
- });
- });