Using Tiles and JSPs. On a JSP, using ${param.ID} to get specific pages.
sub-category.jsp
<jsp:include page="categories/sub-category/${param.ID}.jsp" flush="true" />
/sub-category/test-page.jsp is an ID
I need to find a way to make test-page.jsp have its own unique page title that I can insert onto test-page.jsp.
I assuming that you want to change the title of your webpage based on the page loaded(eg. test-page.jsp).
If that is true, then in test-page.jsp, you can write
or write within document.onload()
best would be jquery.ready function