473,387 Members | 1,388 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

What version of Javascript is my IE6 compatible with, where do I getjavascript engine?


I can find a lot of stuff on the internet about javascript, except how
to I determine which version my IE6 is compatible with, or where to
download javascript plugin/engine/what-ever for Windows (windows 98 se
specifically).

Basically, I don't write java or javascript code, but I want to update
or tweak or fix how IE is handling javascript on my system currently.
Where do I get that "stuff" ???
Oct 2 '06 #1
4 4012
Java Guy wrote:
I can find a lot of stuff on the internet about javascript, except how
to I determine which version my IE6 is compatible with, or where to
download javascript plugin/engine/what-ever for Windows (windows 98 se
specifically).

Basically, I don't write java or javascript code, but I want to update
or tweak or fix how IE is handling javascript on my system currently.
Where do I get that "stuff" ???
You will probably get a better answer in a Microsoft or IE forum, this
new group is about JavaScript programming, mostly as used in web
browsers on the web.

JavaScript as used on the web hasn't changed since 1999 and Microsoft's
support for the core language is as good as anyones (and has been for
quite some time), so there is no reason to suspect that your current
script support is deficient. Keep your version of Windows up-to-date
with Windows Update and you should be fine.

You can also check Microsoft's IE downloads page:

<URL:
http://www.microsoft.com/windows/ie/...fault.mspx#ELC >
--
Rob

Oct 2 '06 #2
"Java Guy" <Ja**@Guy.comwrote in message news:45***************@Guy.com...
>
I can find a lot of stuff on the internet about javascript, except how
to I determine which version my IE6 is compatible with, or where to
download javascript plugin/engine/what-ever for Windows (windows 98 se
specifically).

Basically, I don't write java or javascript code, but I want to update
or tweak or fix how IE is handling javascript on my system currently.
Where do I get that "stuff" ???
First off - you don't need to get that stuff. If you have IE 6 and keep it
updated you've got the latest/greatest version of the script engine.

To answer your other question we need to be a little pendantic: IE doesn't
support "JavaScript". JavaScript itself is an implementation of ECMAScript
(ECMA is the standards body that controls the standard documentation)... or
rather several browsers implement ECMAScript and call it "JavaScript".

So Opera implements ECMAScript and calls it "JavaScript" and Firefox
implements ECMAScript and calls it "JavaScript" and so forth - but these are
all seperate implementations of the same specification and each have their
own bugs and so forth. IE implements ECMAScript and calls it "JScript"
(this is a legacy thing from way back from before ECMA even entered the
picture).

Anyway... since IE is compatible with JScript then look at the JScript
documentation:

http://msdn.microsoft.com/library/de...asp?frame=true

Look under the Language reference for version information. You'll find that
IE 6.x supports JScript 5.6.

The great thing is that MS provides, in my opinion, the best online
documentation around. Complete, cross-referenced and full of useful
examples.

Jim Davis
Oct 2 '06 #3
RobG wrote:
JavaScript as used on the web hasn't changed since 1999 and
Microsoft's support for the core language is as good as anyones
I see references to Javascript 1.x, where x is number from 2 to 7.

When I go to this page:

http://javascript.internet.com/user-...t-version.html

I'm told:

"Your browser supports JavaScript version 1.3"

The other followup post to my question makes a reference to "Jscript"
and specifically version 5.6.

Can someone give me an executive summary of the difference between
JavaScript and Jscript?

As well as explain the consequences of having a browser that supports
version 1.3 of Javascript when (apparently) Javascript is up to
version 1.7?

(I'm having problems viewing some IP or network cameras and the code
that doesn't seem to be working properly is written in Javascript -
code that came with the webcam that is)
Oct 2 '06 #4
Java Guy wrote:
RobG wrote:
JavaScript as used on the web hasn't changed since 1999 and
Microsoft's support for the core language is as good as anyones

I see references to Javascript 1.x, where x is number from 2 to 7.

When I go to this page:

http://javascript.internet.com/user-...t-version.html

I'm told:

"Your browser supports JavaScript version 1.3"
I can't comment on that code other than to say I'd distrust any such
attempt at sniffing the supported version of JavaScript. The language
attribute was deprecated when introduced, therefore it is unreasonable
to expect that browsers will reliably take any specific action based on
it. All that can be said is that any browser parsing a page as HTML 4
should tolerate its presence.

Certain values of the language attribute have known side-effects in
some older browsers, its use is strongly discouraged in favour of the
(required) type attribute.

The other followup post to my question makes a reference to "Jscript"
and specifically version 5.6.

Can someone give me an executive summary of the difference between
JavaScript and Jscript?
JScript is Microsoft's implementation of ECMAScript Language and
includes a considerable number of proprietary extensions (as do
implementations by others such as Opera, Apple and Mozilla). The
following link gives approximate equivalence between JScript and
JavaScript versions:

<URL: http://en.wikipedia.org/wiki/Jscript >

though I can't comment on how authoritative it is.
As well as explain the consequences of having a browser that supports
version 1.3 of Javascript when (apparently) Javascript is up to
version 1.7?
The page you are basing your "1.3" number on only goes to 1.3,
therefore presuming its detection method is accurate (which it might be
for IE), it can't report anything newer.

<URL: http://www.mozilla.org/js/language/ >

JavaScript is up to version 2.0, you can try it out if you like:

<URL: http://www.mozilla.org/js/language/Epimetheus.html >

(I'm having problems viewing some IP or network cameras and the code
that doesn't seem to be working properly is written in Javascript -
code that came with the webcam that is)
Then you'll have to talk to the web cam vendor. ECMAScript is just a
language specification and is intended to be used as a means to
communcate with a host environment. You are dependent on the
functionality provided by that environment to actually do something
useful.

In a browser you are dependent on the DOM methods it provides to do
stuff - e.g. ECMAScript has no native or built-in mechanism for input
or output (it has no write, print, read, scan, or similar commands).
--
Rob

Oct 3 '06 #5

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

Similar topics

2
by: Patrox | last post by:
Hi ! when installing sqlserver 2000 on a Windows 2003 server it explicitly tells "server not compatible with Windows 2003" during install, but it can carry on. After we applied serfice pack 3a...
5
by: wylbur37 | last post by:
How do you find out what version of JavaScript your browser supports? Is there a JavaScript function that will tell you? __________________________________ Do you Yahoo!? Find out what made...
1
by: dan baker | last post by:
I am pretty much a newbie with javascript, and would like to get a little clarification on what I can do with an onChange javascript event handler. I have a dynamic page I build with perl and...
0
by: JDP | last post by:
How do I tell what version of Crystal is being used in VS .Net? Is there a way to tell what version my report was created in? Details: During the installation of VS 2003 we were prompted and...
3
by: Reza Nabi | last post by:
Hello I created a very simple page just to load a crystal report which was working just great Code started throwing the following exception, after I installed crystal report 9 advanced edition ...
2
by: Bilicki Vilmos | last post by:
Hi all, I have upgraded my cygwin installation and it has replaced my old 7.3 postgresql. My questions are the following: How can I use the old files with the newer version? If this is not...
7
by: John Salerno | last post by:
My web server told me it isn't, which is why they are sticking with MySQL 4.0 for now, but I'm obsessed with using the latest versions, so I just want to be sure. According to the mysqldb download...
3
by: A.M | last post by:
Hi, I am planning to develop python applications on windows and run them on Linux. Are ActivePython scripts compatible with Linux? Is there any guideline that explains the compatibility...
2
by: jmarr02s | last post by:
Is MS Access 2003 compatible with Crystal Reports Version 9? Yes or No? I am UNABLE to create a connection to my MS Access 2003 dbase using Crystal Reports Version 9! Thanks!
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
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...

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.