i have a javascript breadcrumbs() function
and i want that this function should be call on page load of every jsp page ,so my breadcrumb can be set for all jsp.
can anyone help me?
i have a javascript breadcrumbs() function
and i want that this function should be call on page load of every jsp page ,so my breadcrumb can be set for all jsp.
can anyone help me?
You can use
<%@include file="script.jsp" %>
to embed the script into the page code directly. This would be preferable if the script is small and JSP can even customize it for every page, if required.