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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:18:44+00:00 2026-05-12T08:18:44+00:00

I have an unordered list like this: <div class=blueBoxMid> <ul> <li>First item <em>This is

  • 0

I have an unordered list like this:

<div class="blueBoxMid">
  <ul>
    <li>First item <em>This is the hover text</em></li>
    <li>Second item <em>This is the hover text</em></li>
  </ul>
</div>

I want to use jQuery to generate this:

<div class="blueBoxMid">
  <ul>
    <li title="This is the hover text">First item</li>
    <li title="This is the hover text">Second item</li>
  </ul>
</div>

My current code looks liket his, but I couldn’t get it to work. Help anyone? 🙂

$('.blueBoxMid li').each(function(){
  $('.blueBoxMid li em').hide();
  $('.blueBoxMid li').attr('title', $(this).children('em').text()).hover(function(){$(this).css('cursor', '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-05-12T08:18:45+00:00Added an answer on May 12, 2026 at 8:18 am

    Try something like this:

    $('div.blueBoxMid ul li').each(function () {
        var tooltip = $(this).children('em').remove().text();
        $(this).attr('title', tooltip).css('cursor', 'help');
    });
    

    Basically, it loops through every <li> element, removes its <em> element and gets the text contents of the <em> element, then it applies the title attribute and CSS style. The CSS style can be on always (not only on hover) since it will only change the cursor when hovered anyways.

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

Sidebar

Related Questions

I have an unordered list looking like this HTML <div id=pop> <ul> <li>Item 1</li>
I have a page with an unordered list built like this: <ul id='shows'> <div
I have an unordered list: <div class=toplist> <ul> <li>Item</li> <li>Item</li> <li>Item</li> <li>Item</li> <li>Item</li> <li>Item</li>
I'm using jQuery mobile and I have a long unordered list like this: <div
I have an unordered list, somthing like this <ul> <li> <div>filled with other stuff</div>
I have an unordered list of items, something like this, shortened for brevity: <div
So my list looks something like this: <div=list> <ul> <li class=page item>Parent 1 <ul>
I have a binary tree in unordered list that looks like this: <ul> <li>1
I have an unordered map: class O(val a: Int) Map[String, List[O]] which I'd like
I have an unordered list... <ul class=hide> <li class=home> <div class=link> <a href=/>Home</a> </div>

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.