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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:27:06+00:00 2026-05-25T02:27:06+00:00

I made online drawing for electronics layout editing and used html form select tag

  • 0

I made online drawing for electronics layout editing and used html form select tag to pick the component to draw.

<label>Electronics component - <select id="chose">
        <option value="resistor">Resistor</option>
        <option value="pot">Potentiomenter</option>
        <option value="cap">Capacitor</option>

….and so on

As the script growing, I need a html menu for easier component choosing, but I can’t implement the getelementsbytagname('li') to call for chosen component.

You can see it at: http://www.3lectronics.com/electronics-layout/Atarado-Draw1.html and figure what I’m talking about. I already browsed similar issues and didn’t find the appropriate answer.

Please 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-25T02:27:07+00:00Added an answer on May 25, 2026 at 2:27 am

    There’s a helpful resource at W3C to see what events are available from which HTML elements, and to figure out what to do in the JS another resource that tells you what properties JavaScript can access in which HTML elements.

    As for the code. You’ll want to attach a JS listener to the onchange event of the select element.

    The HTML

    <select id="chose" onchange="dropDownSelectionChange(this.form.chose)">
    

    The JavaScript

    function dropDownSelectionChange(dropdown)
    {
        // the selected index in the dropdown
        var idx  = dropdown.selectedIndex
        // the selected value in the dropdown
        var value = dropdown.options[idx].value
    
        // do some work here.
    }
    

    Happy coding.

    update

    HTML

    <ul>
      <li id="one" onclick="doStuff(this);">one</li>
    </ul>
    

    JS

    function doStuff (elem) {
      alert(elem.id);
      return false;
    }
    

    if you want you can wrap the text in the LI element in an html anchor to get it highlighted as a link or do this with css whichever way you prefer.

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

Sidebar

Related Questions

I made a Servlet for an online form and every time I try to
I'm working on a online quiz client where we use a dedicated custom-made linux
I'm putting together a simple test made up of two tutorials available online for
Made solution change: I am trying to display a html table of data.. In
I made a Java Applet with some Standard GUI Components on it. I used
I made a class that derives from Component: public class MyComponent: System.ComponentModel.Component { }
I've made a site in JSP (online shop). An user has logged in and
I recently made a simple game where user can submit his/her high scores online.
Hello community, I'm trying to debug that I didn't made. This app works online
I have made an online gallery using Python and Django. I've just started to

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.