Reputation: 11296
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?
Upvotes: 2
Views: 2885
Reputation: 944446
You need to set the correct content-type
<%@ page contentType="text/javascript" %>
… but other than that, JavaScript (like HTML) is just text.
Upvotes: 5