 Bueno tengo un problemita. Veran quiero dividir mi script en archivos .js
  Bueno tengo un problemita. Veran quiero dividir mi script en archivos .jstengo asi mi arbol de esta manera
Ceinso
css
style.css
js
main.js
melon.js
index.html
####################################
index. html
<!DOCTYPE html>
<html>
<head>
<meta />
<title>Prueba </title>
<script src="/js/main.js" type="application/javascript"></script>
<script>
saludar();
</script>
</head>
<body>
</body>
</html>
main.js
function saludar(){
	alert("Hola Mundi")
}el problema viene por que no aparece la alerta, lo prove en varios navegadores y tengo el mismo problema, ¿alguien sabe a que se debe?




