I have a button that links to
<a href="/data_entry?Display=A&ts=<%=dateStamp%><%=locTimeStamp%>">A</a>
My route,
router.get('/data_entry/:Display/:ts', function(req,res){
console.log('get display');
});
Is not being called on click. The link is being passed in the url but the page stays on the current page.