![]() |
|
|
+ Search |
![]()
|
Jul 24th, 2002 15:17
kAt v,
The same way as you would include a javascript in a regular html page.
Just make sure that your <script> tags are outside the jsp tags.
ex.
<html>
<body>
<% .... some jsp code ... %>
<script language="javascript">
document.alert("some alert");
</script>
<% ... more jsp code ... %>
</body>
</html>