Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 593213
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:49:19+00:00 2026-05-13T15:49:19+00:00

I try to do something like that 1. <head><% out.println(<script type=\text/javascript\>); out.println(function myfunction(){); out.println(for(int

  • 0

I try to do something like that
1.

<head><% out.println("<script type=\"text/javascript\">"); out.println("function myfunction(){"); out.println("for(int i=0;i<10;i++){"); out.println("alert(message+i);"); out.println("}}"); out.println("</script></head>"); %>

and use it like that

<body><input type="button" value="abcd" onclick="myfunction();"/></body>

That is generate javascript within my jsp Pages.And it works fine but only in chrome and not in IE.I then tried this 2.

<head><%StringBuffer dynamicJavaScript = new StringBuffer();dynamicJavaScript.append("\n<script type=\"text/javascript\">");dynamicJavaScript.append("\n</script>");%></head>

and use it like that again inside the tag

<%=dynamicJavaScript%>

In a weird way only if i include both of these solutions (1. & 2.) it works in IE.
Have yoy got any ideas?
Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T15:49:20+00:00Added an answer on May 13, 2026 at 3:49 pm
    function my function(){
    

    This is syntactically invalid in two ways: 1) my is wrong here. 2) function is a reserved keyword.

    With regard to generating Javascript code dynamically, I strongly recommend you to not use scriptlets for this, but just taglibs/EL. Your first line can be perfectly replaced with help of JSTL (just drop jstl-1.2.jar in /WEB-INF/lib) c:forEach:

    <head>
        <script type="text/javascript">
            function myFunction() {
                // <c:forEach begin="0" end="10" var="i">
                    alert(message${i});
                // </c:forEach>
            }
        </script>
    </head>
    

    Much better readable, isn’t it?

    Update as per the comments, you can also iterate over a Collection with c:forEach. Replace the particular piece by:

                <c:forEach items="${bean.vector}" var="item">
                    alert('${item}');
                </c:forEach>
    

    ..where ${bean} is your bean which is been placed in any of the page, request, session or application scopes and ${bean.vector} requires having a getter with that name in the Bean class like

    public class Bean {
        public Vector<String> getVector() {
            return this.vector;
        }
    }
    

    To learn more about JSTL, consult Sun Java EE tutorial part II chapter 7. To learn more about EL, consult Java EE tutorial part II chapter 5.

    That said, the Vector is considered legacy and you should be using the improved ArrayList instead which has already replaced it over a decade ago (more about Collections framework in this Sun tutorial). In this line, I would also recommend to throw all those >10 year old tutorials/books away and go read the more recent ones.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to do something like this... try { # Something in this function
I'm used to Java so when i try to so something like this: function
try: spam.foo except AttributeError: do_somthing() (Is it wise to check an attribute like that
I want to try create something like Zend's Server Pagecache. What I want to
When I try to search something like C&A the only query I get in
I’m getting an error when I try to do something like this below, <%
For example, I try to do something like this: - (BOOL)compare:(NSDecimal)leftOperand greaterThan:(NSDecimal)rightOperand { BOOL
I am using something like the above sample code but when i try to
I'm new to Web programming! I try to make an app (something like Client
There is something id really like to probably try in an app but would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.