Skip to content

Instantly share code, notes, and snippets.

View CColeson's full-sized avatar

Corey Coleson CColeson

View GitHub Profile
@CColeson
CColeson / index.html
Last active February 14, 2024 01:00
Run ejs in the browser using fetch (web server required as fetching names.ejs would cause an error with CORS)
<div id="target"></div>
@CColeson
CColeson / index.html
Created April 24, 2022 02:31
Render ejs using a template's innerHTML
<template id="names">
<% for (let name of names) { %>
<div><%= name%></div>
<% } %>
</template>
<div id="target"></div>