I have a JSP page that need read a value of a input in a if
, i tried with Jquery but don't work.
<%-- my input with the year value --%>
<input type="text" id="year" value="2021">
<%-- my JSP page need test if year is bigger then 2019 --%>
<c:if test="${ $("#year") > 2019 }">
...
</c:if>
Any help is welcome.