Closed
Bug 187698
Opened 22 years ago
Closed 16 years ago
mvarc.org - use of document.all to display calulation results
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: pascalc, Unassigned)
References
()
Details
(Whiteboard: [havecontact])
1 Go to http://www.mvarc.org/repeater/repeater_distance.html
2 click on one of the link, Whashington Monument or manually enter coordinate
and click on the calculate button
expected result : should display the results below the form
actual result : nothing happens
The script uses IE DOM to display data :
// Display the results
document.all['mile'].innerText = Math.round(dist_mile * 10) / 10; // round
to tenths
document.all['kilo'].innerText = Math.round(dist_kilo * 10) / 10; // round
to tenths
document.all['head'].innerText = Math.round(head_deg);
document.all['direct'].innerText = '(' + DegToHeading(head_deg) + ')';
document.all['gridsquare'].innerText = cal_grid(pnt_b_lat_deg, pnt_b_lng_deg);
}
Reporter | ||
Comment 1•22 years ago
|
||
"This page developed by Delbert K. Matlock"
Delbert@Matlock.com
Whiteboard: [havecontact]
Comment 2•21 years ago
|
||
tech evang june 2003 reorg
Assignee: susiew → english-us
QA Contact: zach → english-us
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•