View Single Post
Old May 9th, 2007, 1:28 AM   #9
Fall Back Son
Hobbyist Programmer
 
Join Date: Oct 2006
Posts: 204
Rep Power: 2 Fall Back Son is on a distinguished road
Out of curiosity, and never having tried HTML myself -- what does the decision to support multiple browsers depend on, exactly (in code)? For example, is there a simple way to make your code recognize what browser is being used, similar to a switch statement in C, and perform certain actions based on that?

aka,

if (MOZILLA)
{

do something ;

}

else if (IE)
{

do something else ;

}

Sorry for the intrusion. Just wondering.
Fall Back Son is offline   Reply With Quote