Home › Forums › JavaScript › Change Font through Java Script › Reply To: Change Font through Java Script
May 17, 2016 at 8:11 am
#241793
Participant
<script>
$( "#myButton" ).click(function(){
$( "#myFont" ).css('font-family', "my font name here");
})
</script>