This function is pretty straight forward and simple. It first checks to see if anything else in the place of `window.position` and if not, it adds the simple function. The function itself does nothing more than check browser version, then return an object containing an "x" and a "y" reflecting the current browser window's x and y position on your screen.
I forgot to mention, when I first posted this, using this function this way (preferably at the TOP of your JavaScript) not only enables `window.position`, but it actually assigns the function as a "global". What this means is that you can recall it in most browsers by simply typing `position()`. Now, just so you know, this is generally advised against for various reason's. If you don't feel comfortable assigning this as a global function, you can always use a name-spacing ftw. For more on name-spacing, check out this nice blog here.
The function:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }; | |
}; | |
}; |
No comments:
Post a Comment