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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:01:46+00:00 2026-05-14T20:01:46+00:00

I’m trying to get a color picker javascript widget working in a page with

  • 0

I’m trying to get a color picker javascript widget working in a page with a bunch of “stuff” in it that I can’t change. Some of the “stuff” is causing the color picker to appear well below the link when clicked. I’ve reduced it to a simple example below.

What’s supposed to happen is when you click “link 1”, “div1” should move directly below “link 1”. What actually happens is that “div 1” appears well below “link 1”. If you remove position: relative; from the CSS definition for divMain, “div 1” is positioned correctly.

How can I position “div 1” directly beneath “link 1” without removing position: relative;?

function setPos(aname, dname) {
  var o = document.getElementById(aname);
  var ol = o.offsetLeft;
  while ((o = o.offsetParent) != null) {
    ol += o.offsetLeft;
  }
  o = document.getElementById(aname);
  var ot = o.offsetTop + 25;
  while ((o = o.offsetParent) != null) {
    ot += o.offsetTop;
  }
  document.getElementById(dname).style.left = ol + "px";
  document.getElementById(dname).style.top = ot + "px";
}
h1 {
  height: 50px;
}

#divMain {
  position: relative;
}
<h1></h1>
<div id="divMain">
  <a href="#" onClick="setPos('link1','div1');return false;" name="link1" id="link1">link 1</a>
  <div id="div1" style="position:absolute;border-style:solid;left:200px;top:200px;">div 1</div>
</div>
  • 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-14T20:01:47+00:00Added an answer on May 14, 2026 at 8:01 pm

    The position of the div is relative to the innermost container with its position set. So in this case, it’s ending up 200px rightwards and downwards from divMain. Without position set on divMain, it’s positioned relative to body.

    If you want it right below the link, put both the link1 and div1 inside an element with position. So change it to this:

    <div id="divMain">
        <div style="position:relative;">
            <a href="#" onClick="setPos('link1','div1');return false;" name="link1" id="link1">link 1</a>
            <div id="div1" style="position:absolute;border-style:solid;left:0px;top:16px;">div 1</div>
        </div>
    </div>
    

    (Note that I pop it down by 16px still, to put it below the link.)

    So this means now that div1 is 0px,16px from the div I added, rather than from divMain.

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

Sidebar

Ask A Question

Stats

  • Questions 382k
  • Answers 382k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer On my WinXP machine, AIR apps cache such data into… May 14, 2026 at 10:25 pm
  • Editorial Team
    Editorial Team added an answer The TestRunner::run() method you are likely calling in your main()… May 14, 2026 at 10:25 pm
  • Editorial Team
    Editorial Team added an answer Add another callback after the fadeout to hide the div.… May 14, 2026 at 10:25 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.