I have this code but since I use "" the a.innerheight
does not get replaced by its value. Is it possible to make this dynamic?
a.style.webkitTransform = "translate(0,a.innerHeight)"
I have this code but since I use "" the a.innerheight
does not get replaced by its value. Is it possible to make this dynamic?
a.style.webkitTransform = "translate(0,a.innerHeight)"
I'm not sure what you're asking for... this maybe?
a.style.webkitTransform = "translate(0," + a.innerHeight + ")";