473,796 Members | 2,505 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 1933
"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
10177
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
2165
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
20289
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
9495
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
2493
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
4894
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
9680
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
10456
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10230
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10174
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9052
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
7548
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
5575
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4118
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
3
2926
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.