• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Refactoring HTML: cross browser issues

 
blacksmith
Posts: 979
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Elliotte,

In our projects we use Google Analytics to figure out
which browsers are used in comparable web applications
we developed previously.

In other circumstances the customer informs us which
browser is used in their organisation. Sometimes this
is still IE6, depending on how fast the organisation is
ready to switch to other browsers.

Given the above we focus on the most used browser and make
sure the application works and looks as intended in it, but
we do keep an eye on other browsers too.

Anyway, cross-browser issues cost a lot of time, how would
you tackle this issue?

Thanks,

Gian

[ July 15, 2008: Message edited by: Gian Franco ]
[ July 15, 2008: Message edited by: Bear Bibeault ]
 
author
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Standards based approaches work much more reliably across browsers than non-standards based approaches. If you do need to support multiple browsers (and really you always do, even when you think you don't) the simplest approach is usually to develop in Firefox, validate, make it work in Internet Explorer, and validate again.
 
Sheriff
Posts: 67756
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
And don't snub Safari. My Apple fan-boyism may be showing, but I think that the iPhone is going to become an important business platform going forward.
[ July 16, 2008: Message edited by: Bear Bibeault ]
 
Bear Bibeault
Sheriff
Posts: 67756
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's also another argument for the resolution-independence discussed in another topic.
 
Sheriff
Posts: 1367
18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The creative team at the company I work at FINALLY decided to create a fallback for the all-flash homepage.

Guess why?

They got iPhones.
 
Bear Bibeault
Sheriff
Posts: 67756
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Nothing like a little personal pain for motivation, eh?
 
Katrina Owen
Sheriff
Posts: 1367
18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Personal pain is wonderful. Who was it that said that some of the best development efforts started out when some developer needed to scratch their own itch? Maybe Eric S. Raymond...

Last week I spent about 50% of my hours fixing data due to bugs in a couple of other peoples' programs. I suggested to my boss that they fix the data errors themselves until they've fixed the bugs

I figured:

1) personal pain would serve to induce faster bug fixes
2) the pain of fixing data would be on the shoulders of those responsible for creating the problems in the first place

I'm usually not this vindictive, but these data problems are a real pain. I'm happy to fix bugs, but fixing a problem only to see it return every half hour is just too depressing.
[ July 18, 2008: Message edited by: Katrina Owen ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic