Is it possible to update CSS transform
values using jQuery with a click event?
If not, does anyone have any suggestions on how I could achieve the same effect?
I attempted the following code but it did not work for me...
$('.reset').on('click',function(){
$('.zoomer-holder').css(
'transform','translate3d(-50%, -50%, 0px) scale(0.2525, 0.2525)'
);
});