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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:07:00+00:00 2026-06-13T20:07:00+00:00

This may have been asked, but scrolling through about 40+ search results reveals only

  • 0

This may have been asked, but scrolling through about 40+ search results reveals only the jQuery solution. Let’s say I want to get the first item in an unordered list and apply a new text color to it, and it alone. This is simple with jQuery.

Markup ->

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

With jQuery ->

$("ul > li:first").css("color", "blue");

Question is, how do I achieve this without jQuery?


SOLUTION:
I found this method to work across all browsers (inc IE7+) ->

document
    .getElementsByTagName("ul")[0]
    .getElementsByTagName("li")[0]
    .style.color = "blue";
  • 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-13T20:07:02+00:00Added an answer on June 13, 2026 at 8:07 pm

    You can use querySelector (IE7 and lower not supported):

    document.querySelector("ul > li")
    

    Or querySelectorAll:

    document.querySelectorAll("ul > li")[0]
    

    Or getElementsByTagName:

    document.getElementsByTagName("ul")[0]
            .getElementsByTagName("li")[0]
    

    The best way to change style IMO is to set a class. You do this by setting (or expanding) the .className property of the resulting element.

    Otherwise you can set the individual styles using the .style property.


    update

    As @Randy Hall pointed out, perhaps you wanted to first li of all ul elements. In that case, I would use querySelectorAll like this:

    document.querySelectorAll("ul > li:first-child")
    

    Then iterate the result to set the style.


    To use getElementsByTagName, you could do this:

    var uls = document.getElementsByTagName("ul");
    
    var lis = [].map.call(uls, function(ul) {
        return ul.children[0];
    });
    

    You’ll need an Array.prototype.map() shim for IE8 and lower.

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

Sidebar

Related Questions

This may have been asked before, but it's really hard to search for terms
This question may have been asked before, but I had trouble finding an answer,
This has / may have been asked before, but, as far as I remember,
This question may have been asked already - but unfortunately, I could not find
this question may have been asked many times, but could not find any suitable
This question may have been asked before, but I'm starting to get into game
This may have been asked already, but I can't find it, so here goes.
this may have been asked already but I cant really find it (most likely
This may have been asked multiple times, but is there a good HTML-to-PDF creator
I'm aware that this question may have been asked before, but I still haven't

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.