|
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.
|