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

(Jeopardy-style question, I wish the answer had been online when I had this issue)
In the Google C++ Style Guide , the section on Operator Overloading recommends against
I've got a simple setup to allow a help-style window to be loaded and
Out style: bool result; if(something.TryParse(val, out result)) { DoSomething(result); } Nullable style: bool? result
My style of coding includes the following idiom: class Derived : public Base {
Which style of Ruby string quoting do you favour? Up until now I've always
We have several wizard style form applications on our website where we capture information
Imagine a DOS style .cmd file which is used to launch interdependent windowed applications
I have the following style in an external CSS file called first.css table {
I am trying to style an input-box rendered using jEditable . I want 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.