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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:50:40+00:00 2026-06-01T04:50:40+00:00

I am having trouble implementing the following behaviour in a dropdown menu with jQuery.

  • 0

I am having trouble implementing the following behaviour in a dropdown menu with jQuery. I’d like it so when a user mousesover one of the options, a div is highlighted. A quick google search showed me an “non-jquery” way of doing this, which I’ve created a fiddle for here:

http://jsfiddle.net/RY5r4/

<html>
<head> 
<script type="text/javascript">

function showSelectValue(e) {
if (e.target.id!= 'select') {
document.getElementById('test').innerHTML = e.target.value;
}
}

function attachTest() {
document.getElementById('select').addEventListener('mouseover',showSelectValue,false);
}

</script>

</head>

<body onload="attachTest()">

<div id="test">Something Here</div>

<select id="select">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
<option value="4">Four</option>
</select>

</body>
</html> 

This effect roughly demonstrates the desired effect. The text is changed based on what option the user has selected (no clicks are required to select). I’ve currently implemented an onMouseOver handler to my select, but I am having problems determining what option is highlighted. How to I accomplish 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-06-01T04:50:41+00:00Added an answer on June 1, 2026 at 4:50 am

    Translated to jQuery:

    $('#select').mouseover(function(e) {
      if (e.target.id != 'select') {
        $('#test').text(e.target.value);
      }
    });
    

    http://jsfiddle.net/Guffa/RY5r4/7/

    This if course only works in browsers where a select element actually is displayed as a dropdown list. Also, Internet Explorer doesn’t support this.

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

Sidebar

Related Questions

I'm having trouble implementing this jQuery plugin for dynamic forms while following this tutorial
I'm having a little bit of trouble implementing the following method while handling the
I am having trouble implementing the bootstrap carousel. Can anyone look at the following
I am having trouble implementing a python algorithm which does the following: (This is
I am having trouble implementing ADBannerView and its delegate protocol. I implemented the following
I am having trouble implementing the jQuery .addClass() effect. The script I am trying
Problem: I am having trouble implementing a recursive image lazy load in all relevant
I'm having trouble implementing a nested class who's constructor is initialized with some of
I'm having trouble implementing this step: Given I am logged in as a Facebook
I'm having trouble implementing the Facebook SDK in an iOS project. I am trying

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.