Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <script type="text/javascript">
  2. $( document ).ready(function() {
  3. var theWidth = $( window ).width();
  4. var theSize = theWidth / 100;
  5. $( 'html' ).css( "fontSize", theSize + "px" );
  6. });
  7. $( window ).resize(function() {
  8. var theWidth = $( window ).width();
  9. var theSize = theWidth / 100;
  10. if (theSize >= 8 && theSize <= 14) {
  11. $( 'html' ).css( "fontSize", theSize + "px" );
  12. };
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement