I have a webpage and I would like to zoom its body when it loads using jQuery. However, the CSS zoom feature is not working in Mozilla Firefox. This is what I currently am using:
$("body").css("zoom", "1.05");
It worked in Chrome, Opera, and Edge, but unfortunately not in Firefox.
Since the zoom CSS property doesn't work in Mozilla, I tried this instead:
$("body").css("MozTransform","scale("+1.05+")");
But it also didn't work. Any help or solution you could provide would be greatly appreciated.