views:

45

answers:

1

I'm using a Jboss5/Spring/Struts implementation, and I'm not familiar enough with JSP technology to know how to do this. Is this even possible?

+3  A: 

You need to set the correct content-type

<%@ page contentType="text/javascript" %>

… but other than that, JavaScript (like HTML) is just text.

David Dorward