Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JSPs and Javascript

Status
Not open for further replies.

AvaB

Programmer
Jun 23, 2004
16
CA
Hi all,

Does the location of the <script></script> block whwre I define functions matter in a JSP page?
 
Hi,

No, it does not matter where you include JavaScript in a JSP page. But the best practice is to keep them in a .js file and include them in the template.jsp if you have any if not in the jsp page.

From the included file you can call the javascript function by passing the values.

Cheers
-Venu
 
any rule that applies to html, applies to jsp - jsp just generates html in the end ...

--------------------------------------------------
Free Database Connection Pooling Software
 
well, to split hairs yes it does matter where you put them - you must define your functions before you use them

e.g.

right
<script>function foo() { alert("foo"); }</script>
<script>foo();</script>

wrong
<script>foo();</script>
<script>function foo() { alert("foo"); }</script>



=========================================================
-jeff
try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top