I have an element which I want to move from left to right that won't look like it "teleported".
I am using jQuery onClick on a button - when it's clicked - the div "#superDiv" has to move.
this is the code:
$('#mob-home-btn').click(function(){
$("#superDiv").css({left: 227, position: 'relative'});
})
I tried using CSS3 Transitions on my #superDiv which didn't make the trick.