Yes we can, but it's best we start using dynapi.ua.dom
for ns6, mozilla, opera v7 and other DOM browsers
where dom functions are required
--
Raymond Irving
--- Doug Melvin <[EMAIL PROTECTED]> wrote:
> being as ns6 is really just mkozilla.. should we
> treat mozilla as ns6?
> I will go that way f
As for opera v7 I'll commit my changes this weekend
which will fix the mouse event errors.
Strange! I can't see why mozilla 1.2.1 is having
problems. But check it out doug and let us know
Keep up the good work.
--
Raymond Irving
--- Doug Melvin <[EMAIL PROTECTED]> wrote:
> It seems that nothi
TED]
Sent: Thursday, February 13, 2003 11:33
PM
Subject: [Dynapi-Dev] mozilla and
NS6
being as ns6 is really just mkozilla.. should we
treat mozilla as ns6?
I will go that way for now and see what
happens..
for now mozilla is
"other"..
being as ns6 is really just mkozilla.. should we
treat mozilla as ns6?
I will go that way for now and see what
happens..
for now mozilla is
"other"..
It seems that nothing is working under mozilla
(1.2.1)
I guess this is where I will start my
efforts..
Note.. there are still mouse errors under opera
7
> I also found this doc:
>
>http://unstable.elemental.com/mozilla/build/latest/mozilla/extensions/dox/class_nsIDOMParser.html
>
> if makes refernece to something that look like it should be the solutin to all my
>problems, but again I can't
> find any docs on howw to create it in JS.
I'm not s
I am trying to avoid using the url because of the 4k limit on length.
I have got post working in Java using the data format im my earlier post. This
appears to have no problems.
The importnant question is, will I need a special format of script on the other end to
understand the data?
One a
Ah, I think I see the problem. XmlHttpRequest requires that your POST
data be formatted as some sort of XML (like XHTML). The thing is,
you're sending the data as part of the URL, no? That's closer to a GET
request.
If your server side process is designed to receive small chunks of data
this wa
I tried just using the same string that I send to the java equiv code but it gave me
some message about not
being able to convert it.
Is there anywhere I can find out a sample of what it is actually expecting? At the
moment, I just use
astring containing the content: "name=value&name=value..."
You create a DOM Document object in Mozilla like this (last I knew, this
may have changed):
xmlDoc = document.implementation.createDocument("", "", null);
..but doesn't the XmlHttpRequest send() method support a string of XML
as well?
http://unstable.elemental.com/mozilla/build/latest/mozilla/e
Does anyone out there now I can create a DomDocument object in Mozilla.
I am using an XmlHttpRequest object to transmit data to the server. It
accepts post data in the form of a DomDocument and I have no idea on how
I convert my post data into such a format.
--
Michael Pemberton
[EMAIL PROTECTED
Come on guys!
A Flame war is the least we need on this list...
best,
NunoF
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Doug Melvin
Sent: sexta-feira, 15 de Dezembro de 2000 22:39
To: [EMAIL PROTECTED]
Subject: Re: [Dynapi-Dev] Mozilla & Opera
Sorry.
I apologize. Was only ment in jest.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Doug Melvin
> Sent: Friday, December 15, 2000 5:39 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [Dynapi-Dev] Mozilla & Opera
>
>
So I used the wrong word.
your sarcasm is quite uncalled for.
- Original Message -
From: "Brandon Myers" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, December 15, 2000 10:55 AM
Subject: RE: [Dynapi-Dev] Mozilla & Opera
> Hey doug... gota a ne
Hey doug... gota a news flash for ya..
Nothing can render javascript! Only HTML.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Doug Melvin
Sent: Friday, December 15, 2000 2:54 PM
To: [EMAIL PROTECTED]
Subject: Re: [Dynapi-Dev] Mozilla & O
Title: RE: [Dynapi-Dev] Mozilla & Opera
Before I found DynAPI and I was stumbling along trying to
create inline code that handles all browsers - I went through the Opera site
and couldn't find anything to do with their implementation of CSS or the DOM
or anyt
Title: RE: [Dynapi-Dev] Mozilla & Opera
http://www.opera.com/opera5/specs.html
For the DOM compatibility it says the site is not updated yet
and there's a link to the opera 4 specs.
Josep
-Mensaje original-De:
Samuel, Michael M <[EMAIL PROTECTED]>Par
Title: RE: [Dynapi-Dev] Mozilla & Opera
Before I found DynAPI and I was stumbling along trying to create inline code that handles all browsers - I went through the Opera site and couldn't find anything to do with their implementation of CSS or the DOM or anything else.
Has anyone
Hi!
-Mensaje original-
De: Brandon Myers <[EMAIL PROTECTED]>
Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Fecha: viernes 15 de diciembre de 2000 2:27
Asunto: RE: [Dynapi-Dev] Mozilla & Opera
>This was my updated browser.js file.. I've had it for about 2 months n
-Mensaje original-
De: Scott Andrew LePera <[EMAIL PROTECTED]>
Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Fecha: viernes 15 de diciembre de 2000 1:28
Asunto: Re: [Dynapi-Dev] Mozilla & Opera
>Well, that's it then!
>
>Funny how they bury it like that.
>
ua = navigator.userAgent.toLowerCase();
if (ua.indexOf("win")>-1) this.platform = "win32";
else if (ua.indexOf("mac")>-1) this.platform = "mac";
else this.platform = "other";
}
> -Or
Well, that's it then!
Funny how they bury it like that.
--
scott andrew lepera
---
web stuff: www.scottandrew.com
music stuff: www.walkingbirds.com
___
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.source
With BrowserCheck, maybe something more along the lines of:
if (is.ie5 && !document.innerHTML) <-- Opera, disguised as IE5 ?
--
scott andrew lepera
---
web stuff: www.scottandrew.com
music stuff: www.walkingbirds.com
the browser it
appends this "Opera" at the end? It's really beautiful, isn't it?
Regards,
Josep
-Mensaje original-
De: Doug Melvin <[EMAIL PROTECTED]>
Para: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Fecha: jueves 14 de diciembre de 2000 23:31
Asunto: Re: [Dy
ick.
so, if (document.all && document.innerHTML)... ?
> Actually, it seems that in MSIE 5.0 mode, Opera supports a document.all
> collection, but doesn't support other features like innerHTML, so we may
> have to do some extra work to detect Opera. Or, we could just support it
> until it has a be
Actually, it seems that in MSIE 5.0 mode, Opera supports a document.all
collection, but doesn't support other features like innerHTML, so we may
have to do some extra work to detect Opera. Or, we could just support it
until it has a better scripting interface (W3C's model is what I'd
prefer).
--
-
From: "Scott Andrew LePera" <[EMAIL PROTECTED]>
To: "dynapi" <[EMAIL PROTECTED]>
Sent: Thursday, December 14, 2000 10:29 AM
Subject: [Dynapi-Dev] Mozilla & Opera
> As long as you have the latest Mozilla build you're basically working
> with the same
As long as you have the latest Mozilla build you're basically working
with the same codebase as Netscape 6. Arguably if you develop for one
you're also developing for the other. Mozilla may be more stable because
it doesn't come with all the integrated bloatware. So try switching to
Moz if NS6 do
28 matches
Mail list logo