PDA

View Full Version : Browsers and Javascript help


credico
11-17-2005, 05:21 PM
how can i make my javascript coding to work with all browsers? i attempted to put a status bar message on my site and after a number of tries, i came to realize that the code wouldn't work with firefox, yet it works with IE. so how can i make the status bar and any other codes work with all the main browsers (IE, FF, Netscape)? also here is the code i put in for the status bar, however i know it's right! ;)

<html>
<head>
<title>Javascript Test</title>
<script type="text/javascript">
function me()
{
window.status="welcome"
}
</script>
</head>
<body onLoad="me()">
weeeeeeeeee
</body>
</html>