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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:41:23+00:00 2026-05-22T18:41:23+00:00

style.top offsetTop in chrome is ‘object DOM Window’, it doesn’t give a integer, why.

  • 0

style.top offsetTop in chrome is ‘object DOM Window’,
it doesn’t give a integer, why.
I google such issue but seems I am the only one having such a problem.

They works well in firefox.
How to get an element’s offsetTop in Chrome.

code:

<input type="button"id='test' value="clickme"/>
<script>
document.getElementById('test').addEventListener('click',function(){
    alert(this.offsetTop);
    top = this.offsetTop;
    alert(top);
},true)
</script>

Well, it’s very interesting, it works in the alert function but can’t be stored.

  • 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-22T18:41:23+00:00Added an answer on May 22, 2026 at 6:41 pm

    Because window.top already is a built-in property in the browsers. See here: https://developer.mozilla.org/en/DOM/window.top

    This property is read-only (see here):

    readonly attribute WindowProxy top;
    

    which means that the assignment top = this.offsetTop doesn’t do anything.

    This is a classic case of an issue that arises because of global namespace pollution. Don’t do it. Instead, declare your variables locally:

    document.getElementById('test').addEventListener('click', function() {
        var top = this.offsetTop;
        alert(top);
    }, true);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a problem with the style manipulation of an HTML object in Chrome.
Found this rather strange bug in IE8; element.style.top is limited to 1342177 pixels. Even
How to implement the Linux 'top command' style UI using JAVA? And How to
i created a custom menu called top-navigation. Now I'd like to style it with
#mydiv { position:absolute; left:0px; top:0px; width:83px; height:83px; } <div id=mydiv></div> That's my style for
The JS script: function ShowUploadingAnimation() { $('#info_msg').html(<div style=\padding-top: 15px; height: 50px;\ align=\center\><img id=\uploading-img\ /></div>);
This problem is only in IE. Consider the following HTML: <html> <body> <div style='position:absolute;left:1em;right:1em;top:1em;bottom:1em;overflow:auto;>
(Jeopardy-style question, I wish the answer had been online when I had this issue)
I've got a simple setup to allow a help-style window to be loaded and
Why wont .style.top = 200px; work in this code? Calling the event within the

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.