IE Vs !IE

how do you use them?

This topic was started by ,


data/avatar/default/avatar03.webp

399 Posts
Location -
Joined 2003-03-22
Hi everyone i have a problem with browser (other then IE). I have created a web page for my school project, but i found that the page only likes IE, Mozilla, and opera don't like to run it. for example (minor problem) ,

<--Back to previous page......

copy it and save it as .html.

It works in IE but mozilla display it wrongly, tell me if yours works fine. The worse thing is that i have problem in calculation page in mozilla, IE works fine, Please help me to locate the problem. Is it because of the browser or my bad programming practices. Thanks in advance.

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar03.webp

1352 Posts
Location -
Joined 2004-02-01
mhhh.... i tried but i don´t know if it´s good
the only thing that was displayed was : Back to previous Page with big
fonts at beginning of the word and everything was underlined

i use FireFox 0.8

but the bigger fonts are underlined but not in one row with the smaller fonts

on IE everything was underlined in one row and the beginning fonts are bigger

but locate the prob u should wait
i never did something like that , sorry

data/avatar/default/avatar03.webp

399 Posts
Location -
Joined 2003-03-22
OP
That is what i want to say, is someone here expert in Javascript?

Last time i didn't like IE that much, but for now, i think IE is a Max Compability browser, and the mozilla is a good in feature and speed.

Anyway is any javascript expert here?

data/avatar/default/avatar01.webp

41 Posts
Location -
Joined 2003-03-21
1) use stylesheets to change link color, not java script:




<style>



a{color:820183}



a:hover{color:ff0000}



</style>



or, if you only want it for that one link:






<style>



.mylink{color:820183}



.mylink:hover{color:ff0000}



</style>



...



<a href="https://www.warp2search.net/any.html" class="mylink">blah</a>


2) don't use inside , it's bad.

3) use double-quotes around attributes in tags.

data/avatar/default/avatar03.webp

77 Posts
Location -
Joined 2003-12-28
I recommend to avoid deprecated elements like completely. Use stylesheets instead.

Example:
example text

Using this list of fonts for a Verdana-like font display ensures maximum compatibility across different computer platforms. For instance Linux has no font Verdana. It would default to a serif font similar to Times New Roman if you don't note down the other fonts, too, thus changing the look of the page. Using px as measuring unit ensures that the font size will be the same on every system regardless of the used DPI setting (which varies across different computer platforms).

data/avatar/default/avatar03.webp

399 Posts
Location -
Joined 2003-03-22
OP
Yeah, CSS is a great techniques, i admit it, but the project that i am doing is javascript, that is why i need to used all javascript if posible for high marks.

Anyway thanks for the opinion, I think i have calculation problem solved already. :lol:

data/avatar/default/avatar03.webp

77 Posts
Location -
Joined 2003-12-28
But I wouldn't use JS for such somewhat silly functions, because it's simpler implemented with stylesheets or even normal HTML. If you want JS mouseover effects for links, use a graphic link. Then it would totally make sense to use JS in this situation, and also looks much better. It's also much more code, so much better grades. :)