Answers for "how to add ejs to project"

6

how to include in ejs

<%- include('./partials/nav.ejs') %>
Posted by: Guest on May-27-2020
0

how to use ejs with client side ejs

<div id="output"></div>
<script src="ejs.min.js"></script>
<script>
  let people = ['geddy', 'neil', 'alex'],
      html = ejs.render('<%= people.join(", "); %>', {people: people});
  // With jQuery:
  $('#output').html(html);
  // Vanilla JS:
  document.getElementById('output').innerHTML = html;
</script>
Posted by: Guest on October-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language