I have this:
<input type="hidden" id="specialTime" value="testament">
then in ejs, I want to access it like this:
<% if (data.length) {
var i = document.getElementById('specialTime')
} %>
But the problem is, you cannot use document.getElementById in EJS. What would be the equivalent?