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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T18:40:17+00:00 2026-06-03T18:40:17+00:00

I cant seem to append to a particular id & class. I want HEllow

  • 0

I cant seem to append to a particular id & class. I want HEllow world to be Appened to only 1st

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
var id =94;
    $("#'id',.m").append(" <b>Hello world!</b>");
  });
});
</script>
</head>
<body>
<p id="94" class="postitem m" >This is a paragraph.</p>
<p id="94" >This is another paragraph.</p>
<button>Insert content at the end of each p element</button>
</body>
</html>
  • 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-03T18:40:19+00:00Added an answer on June 3, 2026 at 6:40 pm

    Two problems:

    1. id values must be unique on the page. You’re using the same id for two different elements.

    2. Your id values are invalid for CSS. id values for use with CSS must start with a letter. Since jQuery uses CSS selectors for finding elements, I’d strongly recommend using valid ones. (Those IDs are also invalid for HTML4, but HTML5 allows them. Just not CSS.)

    If you correct both of those problems, you’ll be fine. Note that if you have unique ids, you don’t need the “m” class anymore unless you were using it for something else.

    <html>
    <head>
    <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $("button").click(function(){
        var id = 'x94';
        $("#" + id).append(" <b>Hello world!</b>");
      });
    });
    </script>
    </head>
    <body>
    <p id="x94" class="postitem m" >This is a paragraph.</p>
    <p id="x95" >This is another paragraph.</p>
    <button>Insert content at the end of each p element</button>
    </body>
    </html>
    

    Live example | source


    Separately: I strongly recommend adding a doctype to that HTML. Without one, you’re in quirks mode, and jQuery doesn’t support quirks mode (various calculations will be wrong).

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

Sidebar

Related Questions

Hope someone can help i cant seem to get my head around this, i
I can't seem to figure out how to properly terminate these statements.. .append(<div class='grid_2'>#{@new_topic.name}</div><div
I can't seem to figure this out : $(.task:last).append( $(<div/>, {class: 'clear'}) + $(<div/>,
Cant seem to get the following to find the 'skull' button when the 'heart'
I cant seem to grasp the proper concepts of a factory. Can anyone help
I cant seem to find the PythonMagick (Bindings for ImageMagick) documentation anywhere. Even the
I cant seem to get VB to focus on a textbox correctly at the
I cant seem to compare two JS files (one edited locally and the latest
I cant seem to get the Facebook like button to include my image, checked
I cant seem to find out how to get my ListView (OnListItemClick), to open

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.