jquery css change font family code example
Example 1: jquery change font size
$(this).css({ 'font-size': '15px' });
Example 2: how to change the font family using jquery
$(this).css({"font-family": "Arial, Helvetica, sans-serif", "font-size": "200%"});