Does tranformOrigin function like window.frames.scrollTo(300,300); in theory does? Or in other words, will that move the frame to a specific XY coordinate?
zoom = 2;
$iframe = $('iframe.demo');
$iframe.data().zoomer.zoom = zoom;
$iframe.zoomer('refresh');
So how do we make the following work? It doesn't seem to work as far as I can tell.
$iframe.tranformOrigin('300,300');
Does
tranformOriginfunction likewindow.frames.scrollTo(300,300);in theory does? Or in other words, will that move the frame to a specific XY coordinate?So how do we make the following work? It doesn't seem to work as far as I can tell.