473,796 Members | 2,544 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
21 1933
Aaron Gray wrote:
Richard Cornford wrote:
>Aaron Gray wrote:
<snip>
>>Can someone check this please on pre W3C DOM browsers :-
<snip>
>> function getDocumentRoot ()
{
for ( e in document.childN odes)
<snip>
>... IE 4 and Netscape 4 exit here.
<snip>
Great, thats cut the lower end off at IE4 and NN4.
So which "pre W3C DOM browsers" come after IE 4 and NN4? I suppose
Konqueror 2 might have fallen into that gap, but its "experiment al"
script engine was so far short of any ECMAScript specification that it
could hardly execute scripts at all (and certainly nothing modern (not
having support for, for example, function expressions)).

Richard.

Jul 13 '08 #11
SAM
Gregor Kofler a écrit :
[1]
http://www.jslint.com/
JSLint is completely mad if not crazy !
Only trying to follow how it thinks indentations have to be
gives a code unreadable for me.
--
sm
Jul 13 '08 #12
"Richard Cornford" <Ri*****@litote s.demon.co.ukwr ote in message
news:g5******** ***********@new s.demon.co.uk.. .
Aaron Gray wrote:
>Richard Cornford wrote:
>>Aaron Gray wrote:
<snip>
>>>Can someone check this please on pre W3C DOM browsers :-
<snip>
>>> function getDocumentRoot ()
{
for ( e in document.childN odes)
<snip>
>>... IE 4 and Netscape 4 exit here.
<snip>
>Great, thats cut the lower end off at IE4 and NN4.

So which "pre W3C DOM browsers" come after IE 4 and NN4? I suppose
Konqueror 2 might have fallen into that gap, but its "experiment al" script
engine was so far short of any ECMAScript specification that it could
hardly execute scripts at all (and certainly nothing modern (not having
support for, for example, function expressions)).
Thanks Richard, that hopefully just about wraps that one up then.

Aaron
Jul 13 '08 #13
"SAM" <st************ *********@wanad oo.fr.invalidwr ote in message
news:48******** *************@n ews.orange.fr.. .
Gregor Kofler a écrit :
>[1]
http://www.jslint.com/

JSLint is completely mad if not crazy !
Only trying to follow how it thinks indentations have to be
gives a code unreadable for me.
Oh! Have not had chance to try it out yet ! Could be fun, or maybe not fun
:)

What indenting scheme do you use ?

Aaron
Jul 13 '08 #14
SAM meinte:
Gregor Kofler a écrit :
>[1]
http://www.jslint.com/

JSLint is completely mad if not crazy !
It isn't. It's perfect for tracking down those otherwise extremely hard
to find bugs.
Only trying to follow how it thinks indentations have to be
gives a code unreadable for me.
What indentations? JSLint normally offers explanations why to follow
certain practices and guidelines. My code stays perfectly readable - in
fact I didn't have to change anything of my usual formatting.

Gregor
--
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 #15
SAM
Gregor Kofler a écrit :
SAM meinte:
>Gregor Kofler a écrit :
>>[1]
http://www.jslint.com/

JSLint is completely mad if not crazy !

It isn't. It's perfect for tracking down those otherwise extremely hard
to find bugs.
Perhaps, I don't know.
Which checkboxes do you choose for that ?
>Only trying to follow how it thinks indentations have to be
gives a code unreadable for me.

What indentations? JSLint normally offers explanations why to follow
certain practices and guidelines. My code stays perfectly readable - in
fact I didn't have to change anything of my usual formatting.
He bien, tant mieux.

I use to do ie :

if(truc>0) {
dothat();
if(foo) return;
}

or in expanded, delayed, that I rarely use :

if(truc>0)
{
dothat();
if(foo)
{
return;
}
}
and I think JSLint wants

if ( truc 0 )
{
dothat();
if ( foo )
{
return;
}
}

With these '{' '}' not aligned on the contained instructions
and all this almost blank lines and all these white spaces
I'm lost :-(

I have only a 20" screen.
(my way : 4 lines, JSLint way : 8 lines)

--
sm
Jul 13 '08 #16
SAM meinte:

JSLint doesn't like that.
if(foo) return;
if(foo) { return; } is "correct".

and I think JSLint wants

if ( truc 0 )
{
dothat();
if ( foo )
{
return;
}
}
Nope.

JSLint wants it the Kernighan-Ritchie style

if ( truc 0) {
if(...) {
}
}

It prvents the bugs induced by the auto semicolon insertion. JSLint
doesn't care about indentation.

I have only a 20" screen.
(my way : 4 lines, JSLint way : 8 lines)
No. It becomes less.

Gregor

--
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 #17
SAM
Gregor Kofler a écrit :
>
JSLint wants it the Kernighan-Ritchie style

if ( truc 0) {
if(...) {
}
}
So I didn't check the good checkboxe(s) on my last try of JSLint ?
(recommended options)

--
sm
Jul 13 '08 #18
SAM meinte:
Gregor Kofler a écrit :
>>
JSLint wants it the Kernighan-Ritchie style

if ( truc 0) {
if(...) {
}
}

So I didn't check the good checkboxe(s) on my last try of JSLint ?
(recommended options)
I normally use the default checkboxes.

In your example above JSLint accepts
if()
{..
}

However,
if() foo();
is not accepted.

Gregor
--
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 #19
SAM
Gregor Kofler a écrit :
SAM meinte:
>Gregor Kofler a écrit :
>>>
JSLint wants it the Kernighan-Ritchie style

if ( truc 0) {
if(...) {
}
}

So I didn't check the good checkboxe(s) on my last try of JSLint ?
(recommended options)

I normally use the default checkboxes.

In your example above JSLint accepts
if()
{..
}

However,
if() foo();
is not accepted.
Yes yes yes understood (while these missing {} are optional)

but with my "normal" way ...
30 lines to tell white spaces missing and wrong indentation
Without forgiving unknown variables
>
Gregor

Jul 14 '08 #20

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
9528
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
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...
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
10012
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
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.