can we call more then a function on body load?
am trying this but it doesn't work
Code:
<body onload="MM_preloadImages('images/home_2.jpg','images/cars_2.jpg','images/real_state_2.jpg','images/computers_2.jpg','images/usp_2.jpg','images/jobs_2.jpg','images/dating_2.jpg','images/contact_2.jpg');fillCategory()">
my fillcategory function:
Code:
<script language="javascript" >
function fillCategory(){
addOption(document.register.country, "Fiji", "Fiji", "");
addOption(document.register.country, "Australia", "Australia", "");
addOption(document.register.country, "New Zealand", "New Zealand", "");
}
</script>