Is it possible to retrieve the value of an HTML in jQuery
For example if i have the following html in the front-end
<h1 id="<%= course.ownByStudent[i].user._id%>">Hello World!</h1>
I want to retrieve the value of the id
which is <%= course.ownByStudent[i].user._id%>
in the backend.
How do i accomplish this?