Full version: jsB@nk » Text » Minimum Font Size
URL: https://www.javascriptbank.com/minimum-font-size.html
Many users have their default font size set very low in their browsers. If you are using relative font sizes on your Web site, this script will resize those user's fonts to something more appropriate.
Full version: jsB@nk » Text » Minimum Font Size
URL: https://www.javascriptbank.com/minimum-font-size.html
<script language="javascript">// Created by: Dave Child :: http://www.ilovejackdaniels.com/// Further details can be found at:// http://www.ilovejackdaniels.com/javascript/minimum-font-size/function MinimumFontSize() { var XDivElement = document.getElementById('xdiv'); if (XDivElement.offsetHeight < "16") { tags = new Array ('body', 'div', 'a', 'td', 'th', 'p', 'span', 'h1', 'h2', 'h3'); for (j = 0; j < tags.length; j ++) { var getbody = document.getElementsByTagName(tags[j]).item(0); if (getbody) { getbody.style.fontSize = '12pt'; } } }}window.onload=MinimumFontSize;</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->