function getTopLeft(obj){
var x, y = 0;
//declare the x & y offset
x = obj.offsetLeft;
y = obj.offsetTop;
//override obj with the parent element's offset
obj = obj.offsetParent;
//Add the offset values until obj is null; meaning we've reach the parent document
while(obj != null){
x = parseInt(x) + parseInt(obj.offsetLeft);
y = parseInt(y) + parseInt(obj.offsetTop);
obj = obj.offsetParent;
}
return {_top:y, _left: x}; //returns object
}
// Usage:
var obj=document.getElementById('mydiv');
var offset=getTopLeft(obj);
var left = offset._left;
var top = offset._top;
Sep 4, 2012
Jun 30, 2012
Subscribe to:
Posts (Atom)
Blogroll
- Monkeetech
- Atenean101
- Batangsaag.blogspot.com
- Batangyagit.com
- Bethelo
- beyond-the-norms.org
- Brightartclass.blogspot.com
- Bugits
- Cebu Directories
- Cebudaily.com
- CebuCityLife.com
- CebuElection
- Cebuheritage.com
- Cebuimage.blogspot.com
- Cebupacificairlines.ph
- Codes Depot
- Dahonglaya.com
- Empressofdrac
- Errol Duazo
- EUTS
- Iamdownloader.com
- Ibeejing
- Icymartagimacruz
- Ie-student
- In-indie.org
- Jerry Gervacio
- Lagahit.com
- Marian Calago
- Marroxas2010
- Mcbilly.com
- miscelstuffs.blogspot.com
- Miongandmarquee
- Nurseter
- Pinoyworld.org
- Punkies07
- QueerChef
- rencalago.com
- Sinjin.ph
- softwareportables
- Sunchoke.net
- VeganPrince
- Vera
- Veryducky
- Yugatech
Popular Posts
-
Before, I was centering a div using javascript and it sucks and gives a lot of hassle then I found this script(about four months ago) which ...
-
Most of the hosting providers today disable anonymous user on their server or do not allow to send mail through script without SMTP authenti...
-
What is Pagination? Think about if you have a mysql table with a thousand rows, and you want to allow the user to browse through the entire...
-
Profood International Corp. is the largest Philippine based dried fruit producer and the standard bearer of world class processed fruit pro...
-
Please read the whoe post to choose which method is the best. Portable Document Format (PDF) is an open file format created and controlled ...
-
Have you ever faced a situation when you need to manipulate Excel spreadsheets(ex. insert or embed pictures) with PHP on the server that is ...
-
Functions are basically named scripts that can be called upon from any other script to perform a specifc task. Values (known as arguments) ...
-
Rurouni Kenshin fans got their first look at Japan's live action film last week in the pages of Jump Square magazine with a single image...
-
For those who were not familiar with this cebuano slang word "Bisdak", well it stands for Bisayang Dako which means a person,not n...
Powered by Blogger.




