<script type="text/javascript">
  fetch('https://greenville.ecityusa.com/some-endpoint') // Endpoint that returns content
    .then(response => response.text()) // Assuming the content is plain HTML
    .then(html => document.getElementById('custom-content').innerHTML = html)
    .catch(error => console.error('Error:', error));
</script>