JSFiddle - React, Tailwind, and code Playground

HTML

<address>
1600 Pennsylvania Avenue Northwest, Washington, DC 20500   
</address>

JavaScript

$("address").each(function(){
        var address = $(this).text().replace(/\,/g, ' '); // get rid of commas
        var url = address.replace(/\ /g, '%20'); // convert address into approprite URI for google maps
        
        $(this).wrap('<a href="http://maps.google.com/maps?q=' + url + '" target="_blank"></a>');
  
    });