473,405 Members | 2,373 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,405 software developers and data experts.

JScript-enabled Netscape

One of the banes of contemporary JavaScript programming for the Web is the
differences between JScript and JavaScript -- specifically, a number of
non-standard, but useful objects and/or methods (especially DHTML-related)
which are available in the former, but not the latter. Since JavaScript
engine in Gekko is very strong, I came to realize that the easiest way to
achieve platform independence would be to write specifically for JScript,
and then to have a JavaScript library with definitions of JScript's DHTML
extensions.

So I thought of writing such a library myself, but as it is quite a massive
task I first wanted to check with the group if anyone knows of such a thing
already existing somewhere?

Berislav
Jul 20 '05 #1
6 1379


Berislav Lopac wrote:
One of the banes of contemporary JavaScript programming for the Web is the
differences between JScript and JavaScript -- specifically, a number of
non-standard, but useful objects and/or methods (especially DHTML-related)
which are available in the former, but not the latter. Since JavaScript
engine in Gekko is very strong, I came to realize that the easiest way to
achieve platform independence would be to write specifically for JScript,
and then to have a JavaScript library with definitions of JScript's DHTML
extensions.


The MS reference docs for JScript are at
http://msdn.microsoft.com/library/de...eReference.asp
Do you find any DHTML extensions there?
So it seems you confuse host objects respectively the object models
http://jibbering.com/faq/#FAQ2_8
an application like a browser provides with the core language.

As for trying to emulate MSIE DOM features with Mozilla there are people
who have done that, one of the better attempts at that is at
http://webfx.eae.net/dhtml/ieemu/

However I would stronly suggest to use the W3C DOM as much as possible
if you are scripting for the Web now and not to start with IE
extensions. The W3C DOM should give you a solid base for IE5+, Netscape
6+, Opera 7 and other browsers like Konqueror, Safari.
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #2
Martin Honnen wrote:
Berislav Lopac wrote:
One of the banes of contemporary JavaScript programming for the Web
is the differences between JScript and JavaScript -- specifically, a
number of non-standard, but useful objects and/or methods
(especially DHTML-related) which are available in the former, but
not the latter. Since JavaScript engine in Gekko is very strong, I
came to realize that the easiest way to achieve platform
independence would be to write specifically for JScript, and then to
have a JavaScript library with definitions of JScript's DHTML
extensions.
The MS reference docs for JScript are at

http://msdn.microsoft.com/library/de...us/script56/ht
ml/js56jslrfJScriptLanguageReference.asp Do you find any DHTML extensions there?
So it seems you confuse host objects respectively the object models
http://jibbering.com/faq/#FAQ2_8
an application like a browser provides with the core language.
I stand corrected and ashamed -- I should have known that.
However I would stronly suggest to use the W3C DOM as much as possible
if you are scripting for the Web now and not to start with IE
extensions. The W3C DOM should give you a solid base for IE5+,
Netscape 6+, Opera 7 and other browsers like Konqueror, Safari.


Very well, then -- but how about the XML-handling OM's? In my experience
they differ slightly in the two main browsers. I have seen WebFX's solution,
but they still leave out some very useful features found in JScript.

Berislav
Jul 20 '05 #3


Berislav Lopac wrote:
Martin Honnen wrote:
Berislav Lopac wrote:

So it seems you confuse host objects respectively the object models
http://jibbering.com/faq/#FAQ2_8
an application like a browser provides with the core language.

I stand corrected and ashamed -- I should have known that.


Very well, then -- but how about the XML-handling OM's? In my experience
they differ slightly in the two main browsers. I have seen WebFX's solution,
but they still leave out some very useful features found in JScript.


JScript has XML features? I thought above you noted that you now
understand the difference between a language and an object model. IE
(and only on Win) uses MSXML to load and parse XML, MSXML is COM based
so you can use it with JScript or VBScript or VB or even PHP on Win, so
those useful features have nothing to do with JScript.
I don't know what features you are missing, if you are ony interested in
the IE on Win and Mozilla based browsers and want a solution without
understanding for instance the powerful XPath implementation Mozilla has
by now you might want to look at
http://sarissa.sourceforge.net/
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #4
Martin Honnen wrote:
JScript has XML features? I thought above you noted that you now
understand the difference between a language and an object model. IE
(and only on Win) uses MSXML to load and parse XML, MSXML is COM based
so you can use it with JScript or VBScript or VB or even PHP on Win,
so those useful features have nothing to do with JScript.
I don't know what features you are missing, if you are ony interested
in the IE on Win and Mozilla based browsers and want a solution
without understanding for instance the powerful XPath implementation
Mozilla has by now you might want to look at
http://sarissa.sourceforge.net/


Sorry for my innacurate terminology, but yes, this is exactly what I had in
mind. I meant the IE (i.e. MSXML) specific extensions when used from
JScript, and specifically selectNodes and selectSingleNode methods which
Sarissa provides. Thanks!

Berislav
Jul 20 '05 #5
Berislav Lopac wrote:
One of the banes of contemporary JavaScript programming for the Web is the
differences between JScript and JavaScript -- specifically, a number of
non-standard, but useful objects and/or methods (especially DHTML-related)
which are available in the former, but not the latter. Since JavaScript
engine in Gekko is very strong, I came to realize that the easiest way to
achieve platform independence would be to write specifically for JScript,
and then to have a JavaScript library with definitions of JScript's DHTML
extensions.

So I thought of writing such a library myself, but as it is quite a massive
task I first wanted to check with the group if anyone knows of such a thing
already existing somewhere?

Berislav


Something similar has been tried in the past, though I do not believe it
was successful. Others may disagree. It is still active, though I am
not sure how much. It is called DynAPI at site:

http://dynapi.sourceforge.net/dynapi/

It tried to make a new API to do everything via a standard interface. I
played with it a lot, and even implemented a website using it with
flash-style animations via JS. It worked well, but it was not as
portable as I would have liked... It didnt work well in opera, and had
problems with Linux Netscape versions.

You might want to read their code, as there will likely be a lot of
already-learned info for you.

Brian
Jul 20 '05 #6
In article <bu**********@ls219.htnet.hr>, be************@dimedia.hr
enlightened us with...

So I thought of writing such a library myself, but as it is quite a massive
task I first wanted to check with the group if anyone knows of such a thing
already existing somewhere?


If you mean a library of cross-browser DHTML that does object checking
and stuff for you, then yes.
There are a couple already.

--
--
~kaeli~
A little rudeness and disrespect can elevate a meaningless
interaction to a battle of wills and add drama to an
otherwise dull day.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 20 '05 #7

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

Similar topics

20
by: Harag | last post by:
Hi All. I'm stating out doing some web developing. I was wondering which of the server side languages should I concentrate on and learn. I Know CSS, HTML, T-SQL I can look at the client...
4
by: Harag | last post by:
Hi All I currently thinking of converting from my little knowledge of VBscript to jScript ASP. With this in mind I'm looking at my current code to see how it will convert over to Jscript. ...
3
by: Christopher Brandsdal | last post by:
Hi! Maby this is wring newsgroup.. I'm using ASP / VBscript on my own cms system, but I needed to use some jscript to make something work... I'm new to jscript, so here is a simple question:...
2
by: Zach Mortensen | last post by:
I can't seem to get dynamically-compiled JScript code to use C#-defined custom attributes. I have a simple attribute and a class defined in a C# assembly: namespace MyNamespace { public...
4
by: RFS666 | last post by:
Hello, I have the following problem: I have a web project where I display an activeX control that displays 2D-graphs on an aspx-page. I use jscript to access and modify the properties of the...
6
by: RFS666 | last post by:
Hello, After I posted yesterday "using C# class in jscript", I have a new problem: I have a C# class - DBResult - that contains (and other variables) a string array (and other variables), that...
7
by: RFS666 | last post by:
Hello, I would like to use variables with a type in jscript.NET. I declare them as follows: var x : double = 5.03; This doesn't work in my script, that I write to the page in codebehind with...
5
by: Maxwell2006 | last post by:
Hi, I have a requirement to develop an application component using only Server-Side Jscript (not Jscript.NET). What is Server-Side Jscript?
0
by: tvin | last post by:
Hello all, I have a problem to use jscript.js file in aspx page: I wrote jscript file in Notepad and I compiled this jscript file,after compiled and .exe in command prompt,i see that the...
1
by: Andrew Wan | last post by:
How can VBScript code access JScript code variables in the same ASP page? <SCRIPT LANGAUGE="VBScript"> Dim a a = 10 </SCRIPT> <SCRIPT LANGUAGE="JScript"> Response.Write(a); </SCRIPT>
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...
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
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...
0
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...

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.