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 8698129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T01:40:18+00:00 2026-06-13T01:40:18+00:00

Short version: How can I (using a JQuery or other selector) select an HTML

  • 0

Short version: How can I (using a JQuery or other selector) select an HTML element created by this instance of a JSP 2.0 tagfile, which may be used multiple times per page?

Long version:

I have a JSP 2.0 tagfile, like so:

<%@ tag body-content="empty" import="org.myapp.model.Question" %> 
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ attribute name="question" required="true" type="org.myapp.model.Question" %>

<div class='singleChoice'>
   <c:forEach items="${question.questionOptions}" var="option">
       <!-- display options... -->
   </c:forEach>
</div>

This tag may be used multiple times on a given page. If the size of question.questionOptions is less than 3, I want to add an additional CSS class (‘compact’) to the ‘singleChoice’ div produced by this tag. I would like to add logic to the tagfile (JavaScript, additional JSTL, whatever is necessary) to check the length of questionOptions and add the class to the div if necessary.

I know that I can add a script tag to the tagfile, like so:

<c:if test="${fn:length(question.questionOptions) < 3}"> 
    <script type="text/javascript">
    $(document).ready(function() {
        $('div .singleChoice').addClass('compact');
    });
    </script>
</c:if>

but since that executes when the entire document is ready, and the tag may appear multiple times in a page, it will apply the ‘compact’ class to ALL ‘singleChoice’ divs on the page if any of them meet the criteria for applying it. How can I specify this div from within the tagfile, when I don’t know the ID (and would like to avoid having to set it)?

  • 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-06-13T01:40:19+00:00Added an answer on June 13, 2026 at 1:40 am

    Do you want to add a class “compact” if ${question.questionOptions} is less than three? If yes, my proposed solution is to add a condition that set the div with class=”singleChoice compact”.

    <c:set var="divClass" value="singleChoice" />
    <c:if test="${fn:length(question.questionOptions) < 3}">
       <c:set var="divClass">singleChoice compact</c:set>
    </c:if>
    <div class='${divClass}'>
        <c:forEach items="${question.questionOptions}" var="option">
            <!-- display options... -->
        </c:forEach>
    </div>
    

    This solution is not tested, though the logic is there if I understood question your correctly.

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

Sidebar

Related Questions

The short version of the question - why can't I do this? I'm restricted
So the short version of this is: Can I traverse only the elements within
Short version: can you help me fill in this code? var conkeror_settings_dir = ".conkeror.mozdev.org/settings";
Short Version: When I've created a Channel using ChannelFactory on a client which uses
Short version: After inserting a select element with options into the DOM with an
The short version of this question is: How can I take data that only
Short version: Can I grant access to external databases to a role? Long version:
Short version: How can I map two columns from table A and B if
SHORT VERSION OF QUESTION: So basically my question is: How can I set the
Short version : echo testing | vim - | grep good This doesn't work

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.