About Ie Not Showing Pages That Work In Ff

Pages: 1, 2
free web hosting
Free Web Hosting > Computers & Tech > Designing > Web Design and HTML

About Ie Not Showing Pages That Work In Ff

SilverFox
This post is to help you get pages working in both FF and IE. There's lots of threads on this but I felt justified in making this one too.

Its very easy for IE not to display something that works fine in FF.

For example:

CODE
<title>Organization 13: Enter/title>


That simple error prevented a page from displaying in IE, however I rewrote it as:

CODE
<title>Organization 13: Enter</title>


It then worked. Carefully comb your code for errors such as that. I ignored the issue of IE non-compatibility for a long time until I saw almost 20% of visitors to my site used IE, I then had to work on it. You'd be shocked how many people still use IE:P

~SilverFox

Reply

Mark420
Well the first line of code is not correct thats why it doesnt work.A lot of WSYWIG editors clutter code with faults like that one, to me its just lazy code, you could have for instance done it this way.
CODE
<title>Organization 13: Enter />

A lot of editors just end every statement with a "/>" which is fundamentaly wrong!
I check every line of html and css with the W3C.org validation tools so that I know that my code shouldwork cross platform.
I suggest to anyone making any kind of webpage to check out the W3C pages not only for validation but also to learn more about strict and correct coding.Also look into HTML Tidy which can clean up mistakes in the code and Clean CSS to make your CSS code validate better and in a lot of cases smaller in file size.
Good Luck!
Marky;) 

Reply

lonebyrd
I have to agree with Mark420 about W3C validation. My site isn't very large right now, but I felt to give me the best chance at a succesful website, to check it through that. I tried my best at getting my site XHTML strict, but found for some reason it kept coming up not in complience. So for now, it is XHTML traditional. But I have learned some fundemental mistakes through the validation service. You can also check CSS validation too.

Reply

jlhaslip
In my experience, all CSS files end with the following IE Conditional Comment:
CODE
<!--[if IE]>
<style>
* html {display: crap; }
</style>
<![endif]-->

Reply

SilverFox
Thanks mark.

But like I said that fixed it. Funny how simple error make big issues.

Reply

faulty.lee
If you're saying 20% of your visitors is using IE, then your audience might be more targeted. Generally, there's more than 70% of internet browsers' market belongs to IE. Just image that 90% of the PC users are running windows. Any windows above 98SE comes with IE. That will lead to a staggering figure. Firefox better keep it's pace up to shrink the giant. wink.gif

Reply

SilverFox
Yes my audience is targeted kinda. Its for my slavehack group the site is. Most SH players use FF due to an extension for that game. That's why I started using it at first. Personally I don't think IE is all that bad and I like Windows. I am shocked at how many still use IE though.

Reply

TavoxPeru
QUOTE(Mark420 @ Apr 3 2007, 06:22 PM) *
Well the first line of code is not correct thats why it doesnt work.A lot of WSYWIG editors clutter code with faults like that one, to me its just lazy code, you could have for instance done it this way.
CODE
<title>Organization 13: Enter />

A lot of editors just end every statement with a "/>" which is fundamentaly wrong!
I check every line of html and css with the W3C.org validation tools so that I know that my code shouldwork cross platform.
I suggest to anyone making any kind of webpage to check out the W3C pages not only for validation but also to learn more about strict and correct coding.Also look into HTML Tidy which can clean up mistakes in the code and Clean CSS to make your CSS code validate better and in a lot of cases smaller in file size.
Good Luck!
Marky;) 

Relating the editors ending statement issue thats correct, a lot of them do that, but it is more relating in how we configure the editor, you can enable or disable it, it's your choice, i personally prefer to enable it because it is related with the XHTML standard and right now i'm working with it.

Relating the W3C.org pages, i agree with you again, i also learn a lot about strict and correct coding and the validator is a must page, helps a lot and the related info that shows every time you validate your code helps a lot too.

BTW, thanks for the Clean CSS page, i will try it right now to check some CSS's issues i have relating the use of the color and the background-color properties.

Best regards,

 

 

 


Reply

Quatrux
It is always good to validate your html pages for such mistakes and correct them, due to different browser "fix" those kind of errors quite differently, so this is no surprise, even quite funny. In the early days of browsers, you could have changed how the browser will show the html, at least on AWeb, you could make it show the code Strict, so all those errors would ruin the page, then normal as I remember where errors like that are being fixed and some kind other option more, maybe advanced? where the browser tries to output the html with trying to correct all the mistakes, but this kind of things isn't necessary Today though.. Most of browsers have their own integrated "best" html parser.

And making your pages work for xHTML Strict Doctype isn't necessary too, for your site and in general making the doctype Transitional is practically the best choice (by the way it is not traditional, but Transitional), you don't win anything and you're not cooler if your pages validate as strict, unless you're running a real xml full of stuff site with a lot of x and other x stuff biggrin.gif

Today, it is really easy to validate your pages, especially with all those add-ons, extensions and widgets for most browsers, you just need to click or etc. to see the errors and don't need to always use the online validator and people who say that validating isn't necessary, due to google doesn't validate are wrong in my opinion, google made their pages to work on most cross browsers saving as much bandwidth as possible, sometimes some validation errors might exist, but personally, it is not recommended unless you know what you're doing or you want it to be that way, google is no standard for something, simple people like you work there, just maybe with more knowledge about their profession and usually I notice, that people who don't validate, with time if they get into webdesign or web technical programming they start to check their pages there and there, so in conclusion, people coding with such errors maybe called novice wink.gif but personally I noticed that at such language as html, with time you make less and less mistakes, of course sometimes you don't close some tag, but you will notice it with time. tongue.gif

Reply

pyost
The error correcting thing in different browsers is actually quite a funny thing. As you've proven in this example, Firefox will not be able to display code with errors; I am not talking about valid code, since there are so many standards which differ. However, you should follow some general rules - the tags which surround some content should be <tag>Content</tag>, and those which stand alone, like input, br or img, should be <tag />. So, no matter whether a browser displays all the parts of you page correctly, be sure to make the code error-free.

Another thing to talk about, when it comes to errors, is the CSS file. When creating one from scratch, make it 100 per cent valid, as this is very important for proper display in good browsers. Why do I say good? Because Internet Explorer is not good. It will interpret the CSS code in a very strange way, and you will probably have to use some "hacks" to fix it. This is why you will have to create errors yourself biggrin.gif It is well-know that Firefox doesn't tolerate invalid CSS code, and that a certain line (probably) won't work if it contains an error. On the other hand, Internet Explorer skips some errors (e.g. ignores invalid characters), which leads to a CSS file with no errors. Of course, this method is not recommended, as the code will not be valid, but it is a nice example of how errors can help you smile.gif

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2
Similar Topics

Keywords : showing, pages, work, ff

  1. Domain Transfers
    How do they work? (1)
  2. Hard To Work With Spyware
    (5)
    I have a virus or a sort which disallows me to open the following things. .exe's / .lnk's I
    cannot even open my nortan and that didn't even detect it. I need major help. My OS is Windows
    XP Professional.....
  3. Type Checking Not Work On For .. In Loop
    Flash 8 - actionscript 2.0 (2)
    It seems that the actionscript 2.0 type checking was not work as expected on some place. When
    variables was created on for .. in loop. It will allow any variable type to be used. Or it is
    default construt !? CODE var dayNames1:Array = ; for (var dayName:String in dayNames1) {
        trace(dayNames1 );     trace(typeof(dayNames1 )); } CODE 5 number Tuesday string Monday
    string Sunday string ....
  4. Css Background Not Showing Upin Ie
    it does in Firefox (6)
    I couldn't find a sub-forum for CSS, so i thought i would post it here. I'm using CSS to
    display backgrounds, and for font types and such. So i want to add a background, called
    "background.jpg" this is the CSS code: body { background-image: url(background.jpg);
    background-repeat: repeat; } but for some reason, the background only shows up in Firefox, and
    not in IE is this an error in my code? thanks in advance /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  5. Showing Price
    (0)
    Iam making a game where the price of a worker increases iaccoriding to how many workers you have.
    Whats the java script code for getting number of workers from database, then getting the input ,
    then calculating and viwing the price without clicking submit, meaning no page load .....
  6. Cpu Upgrade But It Doesn't Work
    (11)
    Okay, so, here's the deal. The guy who originally installed my old CPU installed it in a manner
    that the fan on top of it melted off any product numbers and all that. All I know is that the place
    it hooks into says mPGA478B. It was originally a Celeron. Well, when taking it out, the pins were
    bent, so I needed to buy a new one. I went online to find one, searched the mPGA478B thing, cross
    referenced it with the Dell, it said everything was a-okay. BUT, once I received it, it didn't
    work. The new one is an Intel Pentium 4, Northwood Core 478 Socket with spe....
  7. Choice Of Motherboard For Linux Virtualization
    Who knows which ones work well? (4)
    Virtualization is a relatively arcane subject, but it is one which is very rapidly growing, and
    apparently very "hot" in commercial enterprises. For the hobbyist with multiple computers (I have
    8), it offers the possibility of taking snapshots of running, fully configured applications and
    operating systems, and transferring some or all of them onto a single computer platform. First, it
    saves energy. Second, once the conversion has been made from real hardware to a virtual "guest,"
    the driver problems associated with moving from one hardware platform to another are sol....
  8. Time Travel?
    Site activity showing up from the past (1)
    Not really a hosting question, but I couldn't find anywhere better to stick this. So: The
    Latest Activity list at the bottom of the screen is showing up links from the past. Specifically the
    Last Topic column, actually, as the Last Post seems to be fine. If you're not getting the same
    problem, here's a screenshot . Basically all of the links in Last Topic are from way back
    (March-ish?). I'm also fairly sure the site clock is wrong. As I'm writing this, at the
    bottom is "Time is now: 22nd June 2008 - 12:24 AM", despite being much earlier than that (w....
  9. Need Help Making My Ftp Work
    my ftp is not working (14)
    I get this message: Status: Resolving IP-Address for ftp.losangelesmagazine.net Status: Connecting
    to 68.178.232.100:21... Error: Connection timed out Error: Could not connect to server I have used
    this this ftp before so I know it works. Is there any help anyone can give me? I would really
    appreciate any help with this and anyother topic I posted as I just activated my account today and
    I'm trying to figure out what to do to make this work so I can upload wordpress. I used the
    server and users name that I saw on cpanel and the message above is what I got. Tha....
  10. Phpmyadmin Doesn't Work On Gamma Server
    (4)
    Ok, this is weird, phpMyAdmin doesn't work on Gamma server what-so-ever. xboxrulz....
  11. Vista: Work In Progress?
    (3)
    QUOTE Steve Ballmer has admitted that Vista is "a work in progress", and admitted the company
    has to learn lessons from its release. Speaking at the Most Valuable Professional Global Summit in
    Seattle, Ballmer resisted calls for a slimmed down Windows 7: "Vista is bigger than XP and it's
    gonna stay bigger than XP. We have to make sure it doesn't get bigger still." However, Ballmer
    went on to admit that it had taken too long to get Vista out the door and admitted it had caused
    problems: "Vista is a very important piece of work, and I think we did a lot of th....
  12. How To Join Two Pages Togother
    (3)
    I made i join link page and and i have a app form that i need to put into that page can anyone help
    on that note....
  13. Home Work?
    (6)
    Should students be made to do home work? Is it harder for students that live in the country play
    sports travel to school cannot get help with work at home Should parents be made to make there
    children do work at home? Why should they? What work should they do? What is best for kids Same
    sex schools Co-ed schools Private schools Public schools Home school ....
  14. Ftp Does Not Work
    (12)
    For some reason FTP does not work on my computer if you know why this may be please let me know! I
    have tried the following using a FTP program Allowing FTP under my virus manager ....
  15. I6networks....does Not Work!
    (4)
    This hosting site (i6networks.com)should be avoided at all costs ,its a big waste of time.......
    They send the confirmation email four days late (and it is supposed to be "automated") And heres
    exactly what they send QUOTE === Please print for future reference === 2008/02/16
    Congratulations! Your web hosting account is ready! This e-mail contains basic setup instructions
    and details on the features of your hosting package. For more information you can always reference
    our online customer support area at: http://www.i6networks.com/support.shtml ---------------....
  16. Comment For My Work
    (9)
    Comment for my work please: I used photoshop to edit this one ....
  17. Theme Hospital Cheats Don't Work
    (10)
    QUOTE Cheat Mode - To enter the cheat mode, press 2,4,3,2,8, on the fax machine. Extra $10,000 -
    While in cheat mode, press + C together. I tried that and a few others but nothing happens.
    It's Xp.....
  18. Vegetables Will Eat You 3d Salad Digital Work Of Art
    (3)
    Nice work of digital art (inspired by the movie "Alien"), made in 3D Studio Max, but without the
    second set of teeth, no Ranch dressing for blood, and no vegetable oil drool:
    http://www.framebox.de/creations/3d/salad/ A reference to Giuseppe Arcimboldo's work:
    http://images.google.com/images?hl=en&...mages&gbv=2 ....
  19. Tips For Modifying Wordpress Code
    How to make it work the way you like (1)
    Some time ago I decided to convert my current web site (done in Joomla! CMS) to WordPress. Mostly
    because it is less bulky when compared to Joomla! CMS and has exactly the functions I need, unlike
    Joomla, where I found numerous options which I didn't need. Of course, as every professional web
    master (yes, I like to see myself as pro /tongue.gif" style="vertical-align:middle" emoid=":P"
    border="0" alt="tongue.gif" />), I wasn't completely satisfied with the way WordPress delivers
    content, and so I decided to modify its code in order to make it perfect. Unfortuna....
  20. Problems With Php Saving Data Into Mysql
    HELP! I can't get my php documents to work with the mySQL (6)
    i have a server that says it allows php and mysql and in the control panel i can access mysqladmin
    and phpmyadmin but i cant get the php to save data into the mysql, i am trying to make a text-based
    MMOG so i need to save my users/passwords into a database(i thought) and it won't do it, can
    anyone help me....
  21. Multiple Versions Of Ie
    want to test your pages? (7)
    When IE7 was installed on my Windows installation, I always wanted to test my pages on IE6,
    didn't know how to do it, but recently I found this tool, called Multiple_IE, it is a "program"
    which has a simple installer and you can install different Internet Explorer versions on one
    system.. before I didn't know about this, I was reading about using virtual machine stuff.. The
    "program" installs the required files on your computer, it is best to use it if you have IE7
    installed! with it you can test your pages in IE7,IE6,IE5,IE4 and even IE3 which as I know doesn....
  22. "Orphan Work" And "Designing"
    Some more vector art (5)
    Boy... am I getting addicted to this or what? Like my earlier work, these two illustrations I
    created in Inkscape for the coming blog posts at my blog. This is for a blog post on the Orphan
    Work Act of 2006 blog post, that I will be able to post by next week. This one is for a series of
    design articles that I intend to write about. /smile.gif" style="vertical-align:middle" emoid=":)"
    border="0" alt="smile.gif" />....
  23. User Authentication Session Handling Problems
    Authorization server variables not staying across pages (14)
    This is quite a bit of problem I am facing, and I cannot point exactly where I am going wrong. I
    have been lurking around here at the Asta Host forums with regard to login and user authentication
    scripts and I have got as far as this: - Starting a session - Registering a session variable -
    Using the variable to check if the user is authenticated or not. - Authenticating the user through
    MySQL database - Logging of the user, by setting the session variable to un-authenticated I have
    been able to achive the following things too that I think is not related to this proble....
  24. I In Runescape Any Worldchangers That Work On Mozilla?
    I in RuneScape any worldchangers that work on mozilla??? (4)
    I in RuneScape any worldchangers that work on mozilla??? My IE wont work and i want to change my
    world much faster, but all what i found are for IE!!!!! PLZ, tell me! /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  25. Plasma Effect In Photoshop
    Done in CS, but should work in other ver (7)
    This is a tutorial to create a plasma background effect. We are trying to get with a few filters.
    Step 1) Press 'D' to reset your colours, choose linear gradient, uncheck all bozes, black
    to white, and go crazy. Step 2)Do a wave filter (filter>distort>wave) and hit randomize a few
    times. Step 3)Press ctrl+j(duplicate layer) and repeat step 2 on the duplicated layer. Set layer
    belnding mode to lighten. Step 4)Repeat steps 2-3 once. Step 5)Press ctrl+u, check colorize, and
    change colour! Congratulations, now you're done!....
  26. Help, I Can't Make A Server For Teamspeak, Cs, Etc
    I need help on getting these games work (8)
    Ok here's the thing, I'm trying to make a server on counter strike, team speak, warcraft 3,
    etc. but it doesn't work. No one can join it. I tried opening all the right ports on my
    ROUTER, and port triggering my warcraft 3, but to no avail. Can someone please help me fix my
    problem? It's quite annoying and I really really want to play 1v1 against my friends. My
    friends also can't make it for some reason, and they tried everything that I did too before.
    Any help will be grateful.....
  27. How To Connect MySQL With Flash?
    Help me connect my flash Work with MySql (8)
    I know Flash and mysql but could not figure out if I could ever connect these? I want to have a
    dynamic content in my flash object that could be retrieved from the database directly without myself
    needing to update it again and again. How can I achieve this ? Do I have to install any additional
    controls or connectors to do that ? If yes any one tell me....
  28. Php : Variables Included Dont Work In Functions
    Variables from Included files dont work (4)
    Today, I came up with this strange PHP behaviour. Just wanted to know if anyone has any
    suggestions! I make a common variable/function file called config.php. I put in my generally used
    functions in it. Suppose this is my file // -----VARIABLES --- // $a=10,$b.... //
    -----FUCTIONS--- // function doit() { print "A value is " . $a; } ?> Here, suppose we execute
    this file directly. Since A has a global scope, it does work perfectly. But if this same file is
    imported in another file say, mainfile.php // -----VARIABLES --- // $c,$d.... include
    'config.ph....
  29. Xbox Live. Madden 2005 Money Plays
    plays that work almost every time (1)
    Run a nickel..or maybe its dime...oh yeah, has 4 down linemen. The play will be a man-man, 4 down
    linemen, and 2 mlb, both blitzing straight. If the offense uses 1 back or less, choose this play,
    spred the linemen out (Dont loop them) and bring the mlb in. The D-END will be in there with
    literally .4-1.5 seconds. Kearse usually gets there as the qb is getting his hands on the ball.
    Sometimes kearse will be picked up, rarely, but trotter (Or ur mlb) will bust right through the
    middle. Set defense audible as Nickel Cover 3 Call Quarter play and audible to cover 3..B....
  30. God's Role In Natural Disasters
    God's warning or Nature at work? (55)
    Hey Guys, To kick off this forum ... I found this article while reading the paper this morning. It
    really amazed me that modern day religious leaders suggest that the Tsunami disaster was a message
    from God ... almost like the Sodom and Gomora (unsure of spelling) story! I think this is nature
    pure and simple. As a matter of fact, I actually liked the buddist response best of all of them. I
    can come closer to believing in harmonic/karmic forces more than the 'hand of god sending us
    messages' line. To move off topic a bit, I even see the Buddist monks explainat....

    1. Looking for showing, pages, work, ff






*SIMILAR VIDEOS*
Searching Video's for showing, pages, work, ff
Similar
Domain Transfers - How do they work?
Hard To Work With Spyware
Type Checking Not Work On For .. In Loop - Flash 8 - actionscript 2.0
Css Background Not Showing Upin Ie - it does in Firefox
Showing Price
Cpu Upgrade But It Doesn't Work
Choice Of Motherboard For Linux Virtualization - Who knows which ones work well?
Time Travel? - Site activity showing up from the past
Need Help Making My Ftp Work - my ftp is not working
Phpmyadmin Doesn't Work On Gamma Server
Vista: Work In Progress?
How To Join Two Pages Togother
Home Work?
Ftp Does Not Work
I6networks....does Not Work!
Comment For My Work
Theme Hospital Cheats Don't Work
Vegetables Will Eat You 3d Salad Digital Work Of Art
Tips For Modifying Wordpress Code - How to make it work the way you like
Problems With Php Saving Data Into Mysql - HELP! I can't get my php documents to work with the mySQL
Multiple Versions Of Ie - want to test your pages?
"Orphan Work" And "Designing" - Some more vector art
User Authentication Session Handling Problems - Authorization server variables not staying across pages
I In Runescape Any Worldchangers That Work On Mozilla? - I in RuneScape any worldchangers that work on mozilla???
Plasma Effect In Photoshop - Done in CS, but should work in other ver
Help, I Can't Make A Server For Teamspeak, Cs, Etc - I need help on getting these games work
How To Connect MySQL With Flash? - Help me connect my flash Work with MySql
Php : Variables Included Dont Work In Functions - Variables from Included files dont work
Xbox Live. Madden 2005 Money Plays - plays that work almost every time
God's Role In Natural Disasters - God's warning or Nature at work?
advertisement




About Ie Not Showing Pages That Work In Ff



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE