472,962 Members | 2,859 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,962 software developers and data experts.

Oh my! A somewhat standards compliant Internet Explorer? What about JavaScript?

http://blogs.msdn.com/ie/archive/200...xplorer-8-and-
acid2-a-milestone.aspx

Oh my! A somewhat standards compliant Internet Explorer? What about
JavaScript?

Not that it proves much, but it is definitely a huge step in the
right direction.

Bruce Lawson of The Web Standards Project seems optimistic albeit a
mite cautiously, but this has significant implications in the way
Internet Explorer views CSS -- data URI's and generated content for
one.

But my question is what about JavaScript? Am I missing a blog or
technote somewhere? It appears that Internet Explorer 8 focuses on
the designer and not the architect... I'm not sure I understand.

Anyone? Thanks!

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Dec 20 '07 #1
9 1588
On Dec 20, 4:55 pm, "-Lost" <maventheextrawo...@techie.comwrote:
http://blogs.msdn.com/ie/archive/200...xplorer-8-and-
acid2-a-milestone.aspx
When posting a URL, wrap it in: <URL: to help agents render them
properly, e.g.

<URL: http://blogs.msdn.com/ie/archive/200...milestone.aspx
>
>
Oh my! A somewhat standards compliant Internet Explorer? What about
JavaScript?
What significant bugs does JScript have? OK, there are some well-
known bugs with elisions, toFixed, etc. but there's nothing too major
as far as I know.

[...]
But my question is what about JavaScript? Am I missing a blog or
technote somewhere? It appears that Internet Explorer 8 focuses on
the designer and not the architect... I'm not sure I understand.
For most web application architects, javascript is in the same
category as CSS - it makes life pretty for the user but does not
deliver core functionality. XmlHTTPRequest and similar functionality
has changed that view a bit, but not by much.
--
Rob
Dec 20 '07 #2
RobG said the following on 12/20/2007 2:09 AM:
On Dec 20, 4:55 pm, "-Lost" <maventheextrawo...@techie.comwrote:
>http://blogs.msdn.com/ie/archive/200...xplorer-8-and-
acid2-a-milestone.aspx

When posting a URL, wrap it in: <URL: to help agents render them
properly, e.g.

<URL: http://blogs.msdn.com/ie/archive/200...milestone.aspx
>Oh my! A somewhat standards compliant Internet Explorer? What about
JavaScript?

What significant bugs does JScript have? OK, there are some well-
known bugs with elisions, toFixed, etc. but there's nothing too major
as far as I know.
Why can't I appendChild to a script block? <g>
[...]
>But my question is what about JavaScript? Am I missing a blog or
technote somewhere? It appears that Internet Explorer 8 focuses on
the designer and not the architect... I'm not sure I understand.

For most web application architects, javascript is in the same
category as CSS - it makes life pretty for the user but does not
deliver core functionality. XmlHTTPRequest and similar functionality
has changed that view a bit, but not by much.
Depends on who you ask though. I have always said, and believed, that
the trend on the web is towards a JS dependency, not away from it.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Dec 20 '07 #3
Response to RobG <rg***@iinet.net.au>:
>Oh my! A somewhat standards compliant Internet Explorer? What
about JavaScript?

What significant bugs does JScript have? OK, there are some well-
known bugs with elisions, toFixed, etc. but there's nothing too
major as far as I know.
Not necessarily bugs, but a few inconsistencies in how the DOM is
handled and how CSS is computed and made available to script.

I basically meant, "Is this it?" Pretty much the same as some of the
comments on the page.
[...]
>But my question is what about JavaScript? Am I missing a blog or
technote somewhere? It appears that Internet Explorer 8 focuses
on the designer and not the architect... I'm not sure I
understand.

For most web application architects, javascript is in the same
category as CSS - it makes life pretty for the user but does not
deliver core functionality. XmlHTTPRequest and similar
functionality has changed that view a bit, but not by much.
Hrmm... I don't agree. JavaScript can indeed provide core
functionality in that it can replace standard functionality when
available. Plus I cannot think of a single instance where JavaScript
makes anything look "pretty," unless you mean effects and whatnot.

Granted, most scripters use it to provide little to no benefit to the
end-user, but... *shrugs*

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Dec 20 '07 #4
Response to Randy Webb <Hi************@aol.com>:
>What significant bugs does JScript have? OK, there are some
well- known bugs with elisions, toFixed, etc. but there's nothing
too major as far as I know.

Why can't I appendChild to a script block? <g>
Hence my DOM comment. And of course the quite dead horse of
attachEvent and it's molestation of "this."

Inconsistent pattern with attachEvent as well in that it requires the
user to state an event as if it was declared inline, e.g. the use of
"on."

The necessity to detachEvent's to avoid a leaky Internet Explorer and
the fact there is no cap on the amount of event handlers that can be
registered on a single element/object. And of course then event
capturing as opposed to event bubbling.

</cheatsheet>
>>But my question is what about JavaScript? Am I missing a blog
or technote somewhere? It appears that Internet Explorer 8
focuses on the designer and not the architect... I'm not sure I
understand.

For most web application architects, javascript is in the same
category as CSS - it makes life pretty for the user but does not
deliver core functionality. XmlHTTPRequest and similar
functionality has changed that view a bit, but not by much.

Depends on who you ask though. I have always said, and believed,
that the trend on the web is towards a JS dependency, not away
from it.
I believe the same. Although I cannot vouch for the usability or
effective deployment of most JavaScript content on the Web, but it is
definitely the trend.

A few months back during an introductory Web design course I took one
"expert" user actually argued the point that one should use
JavaScript for whatever because it is more widely supported than CSS.

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Dec 20 '07 #5
-Lost wrote:
Granted, most scripters use it to provide little to no benefit to the
end-user, but... *shrugs*
If you were to try to build elearning for a SCORM or AICC compliant LMS
then it would be "impossible" to do so without javascript.

Andrew Poulos
Dec 20 '07 #6
-Lost said the following on 12/20/2007 3:20 AM:
Response to RobG <rg***@iinet.net.au>:
>>Oh my! A somewhat standards compliant Internet Explorer? What
about JavaScript?
What significant bugs does JScript have? OK, there are some well-
known bugs with elisions, toFixed, etc. but there's nothing too
major as far as I know.

Not necessarily bugs, but a few inconsistencies in how the DOM is
handled and how CSS is computed and made available to script.

I basically meant, "Is this it?" Pretty much the same as some of the
comments on the page.
Nobody will be able to answer that until a beta release of IE8 is made.
If the picture and article are true, then it is a step forwards. I can't
get FF3 to pass the Acid2 test (even though comments on the blog says it
does).

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Dec 20 '07 #7
On Dec 20, 3:37 am, "-Lost" <maventheextrawo...@techie.comwrote:
Response to Randy Webb <HikksNotAtH...@aol.com>:
What significant bugs does JScript have? OK, there are some
well- known bugs with elisions, toFixed, etc. but there's nothing
too major as far as I know.
Why can't I appendChild to a script block? <g>

Hence my DOM comment. And of course the quite dead horse of
attachEvent and it's molestation of "this."
And get/setAttribute of course.

Then there are the many missing features, like the previously
mentioned getComputedStyle. Manual conversion of cascaded styles is a
major pain (and sometimes impossible.)
>
Inconsistent pattern with attachEvent as well in that it requires the
user to state an event as if it was declared inline, e.g. the use of
"on."
Yes, that is ugly.
>
The necessity to detachEvent's to avoid a leaky Internet Explorer and
What a mess. I had been using a detachEvent queue for years, but
recently questioned whether it was needed. It isn't as if attachEvent
adds a property to the element object. It seemed reasonable to me
that only DOM0 implementations should have to worry about creating
circular references. The information in the MSDN article on leaks
contradicts this theory. Apparently attachEvent can create a circular
reference behind the scenes. Hopefully, if they do fix the garbage
collection, they will eliminate attachEvent in favor of a standard
addEventListener implementation. Otherwise, scripts will have to
continue to clean up after IE as there is no way to detect if
attachEvent leaks or not.
the fact there is no cap on the amount of event handlers that can be
registered on a single element/object. And of course then event
What cap would you suggest?
capturing as opposed to event bubbling.
That would open up a lot of possibilites, but they should only do it
with an addEventListener implementation. If they added it to
attachListener, there would be no safe way to use it.
>
</cheatsheet>
>But my question is what about JavaScript? Am I missing a blog
or technote somewhere? It appears that Internet Explorer 8
focuses on the designer and not the architect... I'm not sure I
understand.
For most web application architects, javascript is in the same
category as CSS - it makes life pretty for the user but does not
deliver core functionality. XmlHTTPRequest and similar
functionality has changed that view a bit, but not by much.
Depends on who you ask though. I have always said, and believed,
that the trend on the web is towards a JS dependency, not away
from it.

I believe the same. Although I cannot vouch for the usability or
effective deployment of most JavaScript content on the Web, but it is
definitely the trend.

A few months back during an introductory Web design course I took one
"expert" user actually argued the point that one should use
JavaScript for whatever because it is more widely supported than CSS.
I don't know what to make of that.
Dec 20 '07 #8
Response to David Mark <dm***********@gmail.com>:
>the fact there is no cap on the amount of event handlers that can be
registered on a single element/object. And of course then event

What cap would you suggest?
Oops, I meant to say "no cap on the amount of DUPLICATE event
handlers..."

Sorry about that.

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Dec 21 '07 #9
Response to Andrew Poulos <ap*****@hotmail.com>:
>Granted, most scripters use it to provide little to no benefit to
the end-user, but... *shrugs*

If you were to try to build elearning for a SCORM or AICC
compliant LMS then it would be "impossible" to do so without
javascript.
Good point. Another example of JavaScript providing true core
functionality in my opinion.

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Dec 21 '07 #10

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

Similar topics

17
by: Ian | last post by:
Hi there, Can anybody tell me where I can find a standards documents like you have in c#. I am trying to write javascript and would like to know what standards are i.e. Where to put the...
8
by: Nicolás Lichtmaier | last post by:
Hi, some time ago I've written an article about this issue. It explain some differences in Explorer's and Mozilla's JavaScript/DOM. It has recently changed its URL, This is the new one: ...
23
by: Mario T. Lanza | last post by:
I have been authoring web sites for several years now and recently come to value web standards (as touted by Zeldman and many other web gurus). I have noticed with frustration that there are so...
23
by: GEO Me | last post by:
I am not sure if I am putting this question correctly, and if it is the right place to ask it, but here it goes: Is it correct standards-wise to say about a site: "For PCs this software works...
250
by: Sugapablo | last post by:
Just out of curiosity, while checking on a site I was working on, I decided to throw a couple of the web's most popular URLs into the W3C Markup Validator. Out of microsoft.com, google.com,...
2
by: SteveB | last post by:
I have designed a website using W3 standards (HTML 4.01 Strict and CSS 2.0). The website validates using the W3 validators. When I try to view this using my Pocket PC (O2 XDA IIs) Internet...
15
by: Zhang Weiwu | last post by:
http://www.w3.org/MarkUp/2004/xhtml-faq provided a trick to serve xhtml webpage to IE as application/xml I used that trick and now every one of my xhtml webpage have following first 4 starting...
26
by: Prisoner at War | last post by:
Hi, All: I have a JavaScript search engine that always causes MSIE 7 to do a top-of-page security "warning" (that top-of-page-bar, and not an "alert" )...but other websites' JavaScripts do not...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...

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.