Thanks for the explanation Kevin,
It makes much more sense now!!
Regards,
Rudi
> No. The problem is that you are mixing server side execution with
client-side execution. A jsp page is a compiled page that has been
converted to a servlet that executes on the server and thus produces the
HTML needed by the client. Tag libraries are server side code that
execute on behalf of the jsp page servlet and run within the server side
code. JavaScript is client-side code that runs on the client. The server
is not involved at this point.
If there is functionality that this tag provides that can help your
JavaScript functionality, then you will need to use JSP scriptlet code
to output your JavaScript code. This code could then make use of your
needed tag.
Hope this helps,
Kevin