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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:13:18+00:00 2026-06-02T19:13:18+00:00

I have this nice little snippet i’ve made for getting browser position: if (!window.position)

  • 0

I have this nice little snippet i’ve made for getting browser position:

if (!window.position) {
    window.position = function() {
        return navigator.appName.toLowerCase().indexOf("explorer") >= 0 ? { x: window.screenLeft, y: window.screenTop } : { x: window.screenX, y: window.screenY };
    };
};

It works great, what i’m wondering is, anyone know (i can’t seems to find/remember if it exist) if there is something like a “_prototype” so that I can attach the function permanently. This would be useful in the case I have something like:

var bob =   window.open(...);

So then I could say:

var bobSposisition = bob.position(); // and of course get the same thing on bob that i'm getting on my current parent window.

Updated after answered [added fun snippet!]


This question was old and a bit unthought, but if it helps ya, you may also be interested in the following snippet!

;;(function() {
    "use strict";
    /** window.position
     *  Add `position` method to windows object that allows for detection of the current browser window position.
     *
     *  @returns Object Object of x and y points of current position. Also updates window.position properties, as neccesary.
     *  
     *  @property INT window.position.originX Original X point upon page load. Never updates, unless page is reloaded.
     *  @property INT window.position.originY Original Y point upon page load. Never updates, unless page is reloaded.
     *  @property INT window.position.lastX Last X Point at time of last call to window.position() method. Only updates if current position has changed since last call.
     *  @property INT window.position.lastY Last Y Point at time of last call to window.position() method. Only updates if current position has changed since last call.
     *  @property INT window.position.x Current X Point at time of last call to window.position() method. Updates everytime window.position() method is called.
     *  @property INT window.position.y Current Y Point at time of last call to window.position() method. Updates everytime window.position() method is called.
     */
    window['position'] = function() { var position = function() { var a = 0 <= navigator.appName.toLowerCase().indexOf("explorer") ? { x: window.screenLeft, y: window.screenTop } : { x: window.screenX, y: window.screenY }; void 0 == window.position && (window.position = {}); void 0 == window.position.history && (window.position.history = []); if (void 0 == window.position.lastX || a.x != window.position.x) window.position.lastX = window.position.x; if (void 0 == window.position.lastY || a.y != window.position.y) window.position.lastY = window.position.y; window.position.x = a.x; window.position.y = a.y; window.position.history.push({ x: a.x, y: a.y, last: { x: window.position.lastX, y: window.position.lastY } }); return a; }, pos = position(); position.originX = position.x = pos.x; position.originY = position.y = pos.y; position.history = [{ x: pos.x, y: pos.y, last: { x: pos.x, y: pos.y } }]; return position; }();
})();

/*  To Add To jQuery, simply insert the following after above code and after jQuery is added to page    */

if (jQuery) {
    (function($) {
        /** jQuery(window).position()
         *
         *  @description As is, jQuery's `.position` method errors out when applied to '$(window)'.
         *  The following extends the `.position` method to account for `window` if `window.position` exist.
         *
         *  @example $(window).position();
         *      Will output an Object like:
         *      { x: 2643, y: 0, top: 0, left: 2643, lastX: 1920, lastY: 0, originX: 1920, originY: 0 }
         */
        if (window.position && $.fn.position) {
            $.fn.originalPosition = $.fn.position;
            $.fn.position = function() {
                return this && "object" == typeof this && this[0] == window ? $.extend(!0, window.position(), {
                    top: window.position.y,
                    left: window.position.x,
                    lastX: window.position.lastX,
                    lastY: window.position.lastY,
                    originX: window.position.originX,
                    originY: window.position.originY
                }) : $.fn.originalPosition.apply(this, arguments)
            }
        }
    })(jQuery);
}

jsFiddle

  • 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-02T19:13:19+00:00Added an answer on June 2, 2026 at 7:13 pm

    Properties assigned to the window object are the same as global variables. So your code:

    if (!window.position) {
        window.position = function() {
            return navigator.appName.toLowerCase().indexOf("explorer") >= 0 ? { x: window.screenLeft, y: window.screenTop } : { x: window.screenX, y: window.screenY };
        };
    };
    

    is the same as:

    if (typeof position == "undefined") {
        var position = function () {
            return navigator.appName.toLowerCase().indexOf("explorer") >= 0 ? { x: window.screenLeft, y: window.screenTop } : { x: window.screenX, y: window.screenY };
        };
    };    
    

    In no cases will changes to globals or the window property persist to another page, window or frame as they each have their own state from scratch.


    To deal with your issue, you could make a function that takes the desired window as an argument:

    function getWindowPosition(obj) {
        return navigator.appName.toLowerCase().indexOf("explorer") >= 0 ? { x: obj.screenLeft, y: obj.screenTop } : { x: obj.screenX, y: obj.screenY };
    }
    

    In the context of your new window, you could use it like this:

    var bob = window.open(...);
    var pos = getWindowPosition(bob);
    

    This cross-window access would be subject to the same-origin security restrictions, but as long as they are the same origin, this would work.

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

Sidebar

Related Questions

So, I have this nice little view that I've made, which basically shows two
I have made this nice little table: testPage.cfm: <html> <head> <title>Test Page</title> <style> .blue{
I have this nice little MSBuild-based daily build setup that I use on my
I have this nifty little script that does a nice job of manipulating some
I have got this nice little method to remove control characters from a string.
I have this little crazy method that converts BigDecimal values into nice and readable
Ok, so I have this PHP script that runs in a nice little infinite
I have this little program I write in ruby. I found a nice piece
I once saw this nice little snippet of code below, here at SO: template<typename
Some apps have this nice little white circle with an gray x in there

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.