posted 19 years ago
hi folks,
I have the following file structures:
WebContent/calc/a.jsp
WebContent/js/common.js
in a.jsp i try to include common.js by
<script language="JavaScript" src="../js/common.js">
</script>
and
<script language="JavaScript" src="js/common.js">
</script>
and
<script language="JavaScript" src="/js/common.js">
</script>
none of these works, my question is what is the root of the src?
thanks