Make sure that it works in the main browsers. Like Internet Explorer, Safari, Opera, and FireFox. That way most users will be happy with the results.
I personally don't like when people use a lot of files. But one reason why they do it is for different browsers. There's also another way that some people don't know of. And thats to see in an if statement, like below:
Code:
<script type="text/javascript">
function checkBrowser(){
if(document.all){
alert("Internet Explorer, and a few others...");
} else {
alert("FireFox, Safari, and a few others...");
}
}
window.onLoad=checkBrowser();
</script>
I hope this helps,
Nile
Bookmarks