re
Cheers Xoggoth.
The problem was IE specific to do with the way it registers DOM objects. IE needs the page to be loaded and all brackets closed before objects could be called whereas Firefox was happy with registering an object as soon as it was defined. Bloody complicated this Javascript at times..
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Reply to: Javascript - Get element position in IE6
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on "Javascript - Get element position in IE6"
Collapse
-
Guest replied
-
Guest repliedRe: re
bleeding 'ell that look complicated
x = document.getElementById("tab").style.posLeft
y = document.getElementById("tab").style.posTop
always works for me. It does if you are defining left and top in styles anyhow.
PS No I see you aren't. Ignore above. That adding parent offset thing looks ok to me. Hmm have to try it. I suspect that you will find even when it does work it does not work very well. Used offsetHeight to get size of a box and it always overstates by about 20%, never figured why.
Leave a comment:
-
Guest repliedre
cheers mate, I still get 0 with IE though.
Leave a comment:
-
Guest replieduse posTop and posLeft in ie??document.all.ELEMENT.style.posLeft/posTop
Leave a comment:
-
Javascript - Get element position in IE6
I'm trying to get the position of a table on a page..
<table id="tab">
by using :
var x = getAbsX(document.getElementById("tab"))
var y = getAbsX(document.getElementById("tab"))
which calls:
function getAbsX(elt) { return (elt.x) ? elt.x : getAbsPos(elt,"Left"); }
function getAbsY(elt) { return (elt.y) ? elt.y : getAbsPos(elt,"Top"); }
function getAbsPos(elt,which) {
iPos = 0;
while (elt != null) {
iPos += elt["offset" + which];
elt = elt.offsetParent;
}
return iPos;
}
but the bleeding thing keeps giving me 0's for both x and y in IE but works in Firefox. Can anyone help?Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Right to Work changes from October 2026: a contractor’s explainer Today 15:46
- Data Kraken v Torry Harris: 5 lessons for software developer contractors Today 06:09
- Loan Recall Case Study: Amanda Yesterday 06:00
- How IR35 inflated an £8.5bn consultancy bill — and tests Burnham at the Budget Aug 28 07:47
- Autumn Budget 2026: FCSA’s 5 contractor asks of John Healey Aug 27 04:15
- Andy Burnham's Zoom gripe doesn’t apply to IT contractors, say recruiters Aug 26 03:41
- Check your Loan Recall paperwork for the Isle of Man: it could matter Aug 25 03:27
- Budget 2026: Contractor advisers ask for ‘IR35 reset’ Aug 24 04:57
- Why might an umbrella company fail to pay its total tax bill to HMRC? Aug 18 06:08
- Contractors, here are the late payment fixes that the Lords just turned down Aug 17 08:03

Leave a comment: