473,785 Members | 2,761 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

emulating document.docume ntElement on pre W3C DOM browsers


(Please tell me if this is silly or I am barking up the wrong tree)

Can someone check this please on pre W3C DOM browsers :-

function getDocumentRoot ()
{
for ( e in document.childN odes)
if ( document.childN odes[e].nodeName == "HTML")
return document.childN odes[e];
return document.body;
}

if (!document.docu mentElement)
document.docume ntElement = getDocumentRoot ();

There's an html test page here :-

http://www.aarongray.org/Test/JavaSc...ment-test.html

There's also a test for document.getEle mentById() emulation here :-

http://www.aarongray.org/Test/JavaSc...ById-test.html

Many thanks in advance,

Aaron
Jul 11 '08 #1
21 1930
"Aaron Gray" <an********@gma il.comwrote in message
news:6d******** ****@mid.indivi dual.net...
if (!document.docu mentElement)
document.docume ntElement = getDocumentRoot ();
Minor behavioural amendment :-

if (!document.docu mentElement)
{
document.docume ntElement = getDocumentRoot ();
document.docume ntElement.readO nly = true;
}

Aaron

Jul 11 '08 #2
SAM
Aaron Gray a écrit :
"Aaron Gray" <an********@gma il.comwrote in message
news:6d******** ****@mid.indivi dual.net...
Your page-test works well with my Fx.3
(while it is not W3C compliant)
> if (!document.docu mentElement)
document.docume ntElement = getDocumentRoot ();

Minor behavioural amendment :-

if (!document.docu mentElement)
{
document.docume ntElement = getDocumentRoot ();
on my idea the next line will be not used.

'HTML' has been written on the page
so, probably, there is no more existing JS.
document.docume ntElement.readO nly = true;
}
if (!document.docu mentElement)
{
document.docume ntElement = getDocumentRoot ();
document.docume ntElement.readO nly = true;
alert('vu');
}

the alert doesn't fire

--
sm
Jul 11 '08 #3
"SAM" <st************ *********@wanad oo.fr.invalidwr ote in message
news:48******** *************@n ews.orange.fr.. .
Aaron Gray a écrit :
>"Aaron Gray" <an********@gma il.comwrote in message
news:6d******* *****@mid.indiv idual.net...

Your page-test works well with my Fx.3
(while it is not W3C compliant)
>> if (!document.docu mentElement)
document.docume ntElement = getDocumentRoot ();

Minor behavioural amendment :-

if (!document.docu mentElement)
{
document.docume ntElement = getDocumentRoot ();

on my idea the next line will be not used.

'HTML' has been written on the page
so, probably, there is no more existing JS.
Great.
> document.docume ntElement.readO nly = true;
}

if (!document.docu mentElement)
{
document.docume ntElement = getDocumentRoot ();
document.docume ntElement.readO nly = true;
alert('vu');
}

the alert doesn't fire
Okay Fx.3 does not support the readOnly attribute then.

Thats annoying as AFAICS theres no real fix for that :(

Aaron
Jul 11 '08 #4
On Jul 11, 11:55*am, "Aaron Gray" <ang.use...@gma il.comwrote:
(Please tell me if this is silly or I am barking up the wrong tree)

Can someone check this please on pre W3C DOM browsers :-
Don't do this:
* * {
* * * * for ( e in document.childN odes)
* * * * * * if ( document.childN odes[e].nodeName == "HTML")
* * * * * * * * return document.childN odes[e];
* * * * return document.body;
* * }

for in enumerates and does this up the prototype chain. In Firefox,
"item" will be enumerated, e.g document.childN odes['item']. This is
inefficient and undesirable.

>
Aaron
Jul 11 '08 #5
"dhtml" <dh**********@g mail.comwrote in message
news:78******** *************** ***********@l64 g2000hse.google groups.com...
On Jul 11, 11:55 am, "Aaron Gray" <ang.use...@gma il.comwrote:
>(Please tell me if this is silly or I am barking up the wrong tree)

Can someone check this please on pre W3C DOM browsers :-
Don't do this:
>{
for ( e in document.childN odes)
if ( document.childN odes[e].nodeName == "HTML")
return document.childN odes[e];
return document.body;
}
for in enumerates and does this up the prototype chain. In Firefox,
"item" will be enumerated, e.g document.childN odes['item']. This is
inefficient and undesirable.
Okay so I use Array iteration rather than object iteration, thus :-

for ( var i = 0, N = document.childN odes.length; i < N; ++i)
if ( document.childN odes[i].nodeName == "HTML")
return document.childN odes[i];
return document.body;

I just learned that lesson else where :)

Thanks,

Aaron
Jul 12 '08 #6
Aaron Gray wrote:
>
(Please tell me if this is silly or I am barking up the
wrong tree)
Yes and Yes.
Can someone check this please on pre W3C DOM browsers :-
There is no need because Netscape 4 and IE 4 have no - childNodes -
collections/nodeLists. IE 4 had - children - collections, but not on the
document object if I recall correctly) and Netscape 4 had no means of
accessing an HTML element (because it could not be made into a layer
with CSS).
function getDocumentRoot ()
{
for ( e in document.childN odes)
The for-in statement throws and exception if the expression on the right
of the - in - is not type-convertible into an object, so IE 4 and
Netscape 4 exit here.
if ( document.childN odes[e].nodeName == "HTML")
return document.childN odes[e];
return document.body;
Netscape 4 has no - docuemnt.body - either.
}
<snip>

Richard.

Jul 12 '08 #7
"Richard Cornford" <Ri*****@litote s.demon.co.ukwr ote in message
news:g5******** ***********@new s.demon.co.uk.. .
Aaron Gray wrote:
>>
(Please tell me if this is silly or I am barking up the
wrong tree)

Yes and Yes.
Right :)
>Can someone check this please on pre W3C DOM browsers :-

There is no need because Netscape 4 and IE 4 have no - childNodes -
collections/nodeLists. IE 4 had - children - collections, but not on the
document object if I recall correctly) and Netscape 4 had no means of
accessing an HTML element (because it could not be made into a layer with
CSS).
> function getDocumentRoot ()
{
for ( e in document.childN odes)

The for-in statement throws and exception if the expression on the right
of the - in - is not type-convertible into an object, so IE 4 and Netscape
4 exit here.
Okay that has been moded to an array indexing for loop.
> if ( document.childN odes[e].nodeName == "HTML")
return document.childN odes[e];
return document.body;

Netscape 4 has no - docuemnt.body - either.
Right
> }
<snip>

Richard.
Great, thats cut the lower end off at IE4 and NN4.

Thanks,

Aaron
Jul 12 '08 #8
Aaron Gray meinte:
Okay so I use Array iteration rather than object iteration, thus :-

for ( var i = 0, N = document.childN odes.length; i < N; ++i)
if ( document.childN odes[i].nodeName == "HTML")
return document.childN odes[i];
return document.body;

I just learned that lesson else where :)
Ok. Now add curly brackets - and it looks more like JavaScript ("N"
should become "n", too). You know JSLint [1]?

Gregor

[1]
http://www.jslint.com/
--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Jul 13 '08 #9
"Gregor Kofler" <us****@gregork ofler.atwrote in message
news:aE******** *****@nntpserve r.swip.net...
Aaron Gray meinte:
>Okay so I use Array iteration rather than object iteration, thus :-

for ( var i = 0, N = document.childN odes.length; i < N; ++i)
if ( document.childN odes[i].nodeName == "HTML")
return document.childN odes[i];
return document.body;

I just learned that lesson else where :)

Ok. Now add curly brackets - and it looks more like JavaScript ("N" should
become "n", too). You know JSLint [1]?

Gregor

[1]
http://www.jslint.com/
Thanks, have not got to Lint'ing things yet. I did not like that N either :)

Aaron
Jul 13 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1700
by: Jack3000 | last post by:
Is there anyway to view what is written when using document.write? When I view the source from the webbrowser, I don't see the code that is written after the browser performs the document.write action. Many thanks!
12
10176
by: Kepler | last post by:
How do you get the height of the client browser in IE? Both document.body.clientHeight and document.body.offsetHeight return the height of the document. If the page is long and there's a vertical scrollbar, you get the height of the entire document, screwing up any chance of centering a window in the browser using these values. Is there a way to get the height of the actual browser window and not the entire page height? Thanks.
3
2163
by: adam | last post by:
Hi, I'm building a tree control that lazily loads branches of the tree using the document.load() method. The external XML document that is loaded is generated by a servlet as XHTML. What I would like to do is to add the new tree branch to the correct place in the document in the browser window using the innerHTML property of the parent node.
4
11728
by: Captain Dondo | last post by:
Is it possible to get the actual document size? Not the window size, but the actual rendered document size, which in my case is bigger than the window. I am trying to set up a form entry system where the user scrolls by the UP and DOWN keys. The idea is to keep as much context on the screen. Say the form has 15 lines, and 7 are displayed. The user starts on line 1, at the top of the screen. The text on the screen stays fixed, until...
5
20288
by: sam | last post by:
Hi all, I am using documnet.body.scroll to disable the window scroll bar. This works in IE only and not other browsers. Can any one tell me if there is any such method which is cross browser compatible. Thanks, sam
2
9494
by: petermichaux | last post by:
Hi, I just tested all the browsers I have for support of document.documentElement.scrollLeft to determine how many pixels the window has been scrolled to the right. I'm trying to determine if I really need to go to all the trouble of feature detection for determine page scroll amount of if the old browsers are old enough now just to ignore them. Below are the OS-browser combinations that worked in my test.
8
2492
by: Martin Honnen | last post by:
VK wrote: Mozilla has document.height document.width IE has scrollHeight/scrollWidth, depending on compatMode you will need these properties of document.documentElement or document.body --
1
10261
by: vunet | last post by:
The code below returns the viewport of the browser window but it does not work in IE7 because of the document.documentElement.clientHeight: function pageHeight(){ return window.innerHeight != null ? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null; }
8
4893
by: dhtml | last post by:
Other than Safari 2, what other browsers that support document.clientHeight ? I would guess some KHTML did. I have found the feature, when it is present, to reliably provide the height of the viewport, excluding scrollbars.
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9481
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9953
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8978
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7502
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6741
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5383
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4054
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.