Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Change Font through Java Script Reply To: Change Font through Java Script

#241793
GMK Hussain
Participant
<script>
    $( "#myButton" ).click(function(){
     $( "#myFont" ).css('font-family', "my font name here");
})
</script>