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

  • Home
  • SEARCH
  • 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 7773823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T17:13:25+00:00 2026-06-01T17:13:25+00:00

I am trying to design a bus seat arrangement with CSS and I completed

  • 0

I am trying to design a bus seat arrangement with CSS and I completed the hover section with CSS but next part is to select the seat on which after click there should be change in the background image.
I am using different IDs for each seat. Using the following code

.myClass {
    background:url('images/transparent-backgro-seatlayout.gif') 0 -60px;
}

document.getElementById("w1").className += " myClass";

but this is not working. As I don’t know much about the java script, I am unable to solve my problem. Kindly help.

  • 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-01T17:13:26+00:00Added an answer on June 1, 2026 at 5:13 pm

    If you use jQuery, this could be as easy as:

    $("#w1").click(function() {
      $(this).addClass('myClass');
    });
    

    Note that, by using $(this) you automatically refer to the element that was clicked. This is handy as you mention there are many clickable seats, each with a unique id. Instead of manually creating an event handler for each clickable seat (“w1”, “w2”, etc.) it’s simpler to use a selector which matches any of the seats. Assume all the seats are inside a tag with id “seats” and that each seat is represented with an “a” tag:

    $("#seats a").click(function() {
      $(this).addClass('myClass');
    });
    

    So your markup would be something like this:

    <div id="seats">
      <a id="w1">seat 1</a>
      <a id="w2">seat 2</a>
      ....
    </div>
    

    Furthermore, if you wanted the user to be able to click the seat again to unselect it, use toggleClass instead of addClass:

    $("#seats a").click(function() {
      $(this).toggleClass('myClass');
    });
    

    Note that you don’t have to use jquery to implement all of this. You could do it in raw javascript or you could use a different javascript framework. But if you have the choice, jquery makes coding this up a lot easier.

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

Sidebar

Related Questions

I am trying to design a windows-service which monitors a process namely Gtalk, if
I'm trying to design a db to store the timetable for 300 different bus
I'm trying to design a font selection tool where a user can select one
i am trying to design a page by CSS , the problem is when
I'm trying to design a button with orange background and rounded borders but the
I'm trying to design a page layout with two floated divs which I want
I am trying to design the visuals of a tournament bracket but it's not
I'm trying to design an easily extendable form system in javascript, but am having
I'm trying to design some tables to store some data, which has to be
I've been trying to design a database schema for a side project but I

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.