skwurl
Technical User
- Sep 30, 2005
- 87
On this page:
I setup a script that alerts the user if they dont select a country.
The alert works in IE but not Firefox. Any ideas? The script is:
<script Language="JavaScript">
<!--
function confirm_country()
{
if (Request.country.selectedIndex == 0)
{
alert("Please select a country");
Request.country.focus();
return (false);
}
return (true);
}
//--></script>
I setup a script that alerts the user if they dont select a country.
The alert works in IE but not Firefox. Any ideas? The script is:
<script Language="JavaScript">
<!--
function confirm_country()
{
if (Request.country.selectedIndex == 0)
{
alert("Please select a country");
Request.country.focus();
return (false);
}
return (true);
}
//--></script>