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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:37:52+00:00 2026-05-20T12:37:52+00:00

Ive been trying to create a MouseOver event like iTunes currently uses on thier

  • 0

Ive been trying to create a MouseOver event like iTunes currently uses on thier website.

Like this example (NOTE: if you have itunes this link will try to launch it, if you have Chrome then select ‘do nothing’)

Notice on mouse over the track you get an image linked to a preview on the left of the Track number. How is this done?

Ive been using a mouseover event very unsuccessfully. If anyone can help me, please do!

i have jQuery available. Although i dont need to rely on this

  • 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-20T12:37:53+00:00Added an answer on May 20, 2026 at 12:37 pm

    That can actually be done in pure CSS. So, given the following markup… Yes, I’m using a <table>, but, a track list is tabular data. You could do the same thing with <div>.

    <table id="tracklist">
      <tr class="row-heading">
        <th class="col-preview">Preview</th>
        <th class="col-trackno">Track No.</th>
        <th class="col-trackname">Track Name</th>
        <th class="col-length">Track Length</th>
      </tr>
      <tr class="row-track">
        <td class="col-preview"><a href="#">Preview</a></td>
        <td class="col-trackno">1.</td>
        <td class="col-trackname">Hello World</td>
        <td class="col-length">13:37</td>
      </tr>
    </table>
    

    You can use the following CSS to hide/show the preview link on hover…

    #tracklist .row-track .col-preview a {
      display: none;
    }
    
    #tracklist .row-track:hover {
      background: #ddd;
      border: 1px solid #aaa;
    }
    
    #tracklist .row-track:hover .col-preview a {
      display: block;
    }
    

    Here is the result.

    NOTE: It doesn’t work in Internet Explorer 6 but IE6 is the modern day equivalent of the piñata. It’s pointless to try and preserve it, even its owner is having a swing at it with a bat.


    As for the actual preview button, you can use SoundManager2 to create something similar. Simply modify the CSS above to target the proper element.

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

Sidebar

Related Questions

I've been trying to create a generic event. Basically it should look like this:
Ive been trying to create this code for some time now and just wondered
i am trying to create a fade effect with the following...ive been told im
Ive been learning MVC2 and MVVM lately and I think it works like this.
I've been trying to create a Pager for my application that runs on <uses-sdk
I've been trying to create a parser using simpleparse. I've defined the grammar like
Currently I'm learning C++ and I've been trying to create a simple image processing
Hi so ive been trying to create a JApplet do create a GUI for
I've been trying to create a custom control that works exactly like the Panel
Ive been trying to create a testimonial section for a page which will have

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.