I have the following javascript, using jQuery:
$('html').css('font-size','10px');
I would like to do the same thing without using jQuery.
I've tried document.getElementsByTagName('html').style.fontSize but it didn't work.
It seems like it should be easy, but because HTML is part of every page about javascript & css, googling an answer turns up too many unrelated results.