質問


Im Using the zoom property in JQuery to zoom my body.
So far, this only works in Google Chrome, Not in IE. Using IE 11.
This is what i have so far:

$(document).ready(function(){   
        $('body').css("zoom", "70%");
});

Wich works perfectly in Chrome. For some reason i can't get this to work in IE.
Anyone who has a solution to this IE problem?

Thanks!

役に立ちましたか?

解決

Found it. for MS

$(document).ready(function(){   
        $('body').css("-ms-zoom", "70%");
});
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top