Firefox, NN but not IE???

T

Thomas 'PointedEars' Lahn

roN said:
I got following: http://www.inetgate.ch/design.htm
It works in Firefox and in Netscape nice 'n fine but not in Explorer...why
not? What to change? Thank you!

The Magic 8-Ball^W^W^W JavaScript Console says: "You are not declaring your
variables. You should declare them using the `var' keyword."

<URL:http://jibbering.com/faq/#FAQ4_43>

"Does not work" is a useless error description [psf 4.11]. And I am not
particularly inclined to help someone who is abusing IANA's[1] example.com
domain anyway; sending mail to (e-mail address removed) is something that
crosses my mind instead.

<URL:http://www.interhack.net/pubs/munging-harmful/>
<URL:http://news.individual.net/rules.php>


PointedEars
___________
[1] <URL:http://www.iana.org/>
 
R

roN

Lee said:
roN said:

"but not in Explorer" isn't enough information for me to want to bother to
look
at it. Can you do better?

yes, sorry, okay here we go:
The image changes its size when resizing the browser good in Firefox but not
in IE. In IE there's just no image displayed, why not? Thank you!
 
R

roN

Thomas said:
The Magic 8-Ball^W^W^W JavaScript Console says: "You are not declaring
your
variables. You should declare them using the `var' keyword."

I couldn't find that javascript validator... :( can you please post its url?
Thank you!
<URL:http://jibbering.com/faq/#FAQ4_43>

"Does not work" is a useless error description [psf 4.11]. And I am not
particularly inclined to help someone who is abusing IANA's[1] example.com
domain anyway; sending mail to (e-mail address removed) is something that
crosses my mind instead.

Yes, I appologize, it's like that:The image changes its size when resizing
the browser good in Firefox but not
in IE. In IE there's just no image displayed, why not? Thank you!
 
R

roN

Gérard Talbot said:
roN wrote :

Maybe it would be a nice idea to first remove the CSS errors and the js
errors too.
Okay, I removed the CSS and HTML ones but I'm looking for the Javascript
ones, that's why I asked my question...
 
T

Thomas 'PointedEars' Lahn

roN said:
Thomas said:
[...] And I am not particularly inclined to help someone who is
abusing IANA's[1] example.com domain anyway; sending mail to
(e-mail address removed) is something that crosses my mind instead.

[x] done
[x] score adjusted


PointedEars
 
R

Randy Webb

roN said the following on 1/29/2006 2:44 PM:
No more hints? :(

OK, here is one:

If jigsaw doesn't report an error.
Mozilla reports an error.

Trust Mozilla. After all, it is the one that has to *display* the
document and if it says it doesn't like something, then bet it doesn't
like it.
Thank you!

Welcome.


Besides, what does "not in IE" mean? Explain the error because saying it
"doesn't work" is about as useful towards finding a solution as me
saying "It's in your code" is useful as an answer.
 
R

roN

VK said:
It works (means it displays the same layout) under FF 1.5 and IE 6.0

Did you fix it? Or what exactly your problem?

No, see the image on the right side (the gradient) in FF 1.5? it is gonns be
resized if you're resizing your browser window... but IE 6.0 doesn't show
it at all... :(
P.S. Also why do you need images for such plain buttons? You could use
styling right on links. Just a suggestion.

No, I can't, check what it's doing when you press the mouse button...how
could I do that with CSS?
 
R

roN

Randy said:
roN said the following on 1/29/2006 2:44 PM:

OK, here is one:

If jigsaw doesn't report an error.
Mozilla reports an error.

Trust Mozilla. After all, it is the one that has to *display* the
document and if it says it doesn't like something, then bet it doesn't
like it.

But I can't really read it, it says like:

if I enter [http://www.inetgate.ch/design.htm] and press [Evaluate]
it shows:
syntax error
http://www.inetgate.ch/design.htm
http://www.inetgate.ch/design.htm
--------------------------------^

what does that mean???
Welcome.


Besides, what does "not in IE" mean? Explain the error because saying it
"doesn't work" is about as useful towards finding a solution as me
saying "It's in your code" is useful as an answer.

Well, yes, okay i have some buttons and on the right hand side of these
there is a gradient from blue to white (in FF) which reses itself when
resizing the window but only in FF, IE doesn't display it at all... :(
Why not?
 
R

roN

roN said:
yes, sorry, okay here we go:
The image changes its size when resizing the browser good in Firefox but
not in IE. In IE there's just no image displayed, why not? Thank you!

No more hints on that issue? :(
Thank you!
 
N

Nicolas Noakes

roN said:
No more hints on that issue? :(
Thank you!
--
chEErs roN

I'm root, I'm allowed to do this! ;)
keep on rockin'

dO U NeeD mORe hiNTs? msie IS nOT PNG coMpaTIble, yoU wIll HaVE 2
coNSideR UsinG An AlTerNatiVe IMage FOrmat.

Rgds,
Nicolas
 
R

Randy Webb

roN said the following on 2/1/2006 8:03 PM:
roN wrote:


No more hints on that issue? :(
Thank you!

Did you bother reading the URL I posted? It explains, quite well, that
IE does not support the PNG Format and that is why you do not see the
image in IE.

<url: http://www.petitiononline.com/msiepng/ >
<quote>
The PNG image format was designed to be a replacement for the GIF
format, due to both copyright and design problems with GIF. However, the
latest version of Microsoft Internet Explorer (MSIE) still does not have
full and proper support for the image format
</quote>
 
R

RobG

roN said:
Hi,

I got following: http://www.inetgate.ch/design.htm
It works in Firefox and in Netscape nice 'n fine but not in Explorer...why
not? What to change? Thank you!


What 'doesn't work'? Are you referring to the blue line on the top
right after the 'contact' link that in Firefox extends to the right but
doesn't in IE?

Have a look at the HTML generated for right.png by a script element and
document.write. It generates (in IE):

<IMG height=20 alt=right src="images/right.png" width=NaN>


Note that the width attribute has an invalid value. In Firefox (for me)
it generates:

<img src="images/right.png" alt="right" height="20" width="418">


I think the real issue is trying to use JavaScript to do what should be
done with CSS. Ask in comp.infosystems.www.authoring.stylesheets to
get help with that.
 
R

roN

RobG said:
What 'doesn't work'? Are you referring to the blue line on the top
right after the 'contact' link that in Firefox extends to the right but
doesn't in IE?

Yes, correct...
Have a look at the HTML generated for right.png by a script element and
document.write. It generates (in IE):

<IMG height=20 alt=right src="images/right.png" width=NaN>

why NaN?

Note that the width attribute has an invalid value. In Firefox (for me)
it generates:

<img src="images/right.png" alt="right" height="20" width="418">

in Firefox it's running cleanly 'n correctly, like excpected
I think the real issue is trying to use JavaScript to do what should be
done with CSS. Ask in comp.infosystems.www.authoring.stylesheets to
get help with that.

I can try, asking there... But I'm interested in the IE issue anyway, I'd
appreciate if you'd be able to help me!
Thank you!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,280
Latest member
BGBBrock56

Latest Threads

Top