Can I get the can zoom in/out Firefox/Chrome-like effect using jQuery with no other plugin?
If so, how?
Can I get the can zoom in/out Firefox/Chrome-like effect using jQuery with no other plugin?
If so, how?
var currentZoom = 1;
$('button').click(function() {
currentZoom += 0.1;
$('body').css({
zoom: currentZoom,
'-moz-transform': 'scale(' + currentZoom + ')'
});
});