Safari - jQuery Added CSS Transform Not Working -


i adding transform element using jquery, works in browser nothing in safari. i've looked around answer, cannot find solution or talking this. here code not working:

$('.element').css("-webkit-transform", "translate3d(200px,0px,0px); 

transform works if add directly css, seems isn't showing when using jquery.

you're missing quote , closing parenthesis @ end there.

$('.element').css("-webkit-transform", "translate3d(200px,0px,0px)"); 

also see this.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -