I am a newbie and I have this foolish error when running this html file:
<html>
<head>
<script type="text/javascript" language="javascript" src="/lib/myHello.js"></script>
<script>
function load() {
// var num = add(5,5);
var myHello = sayHello();
alert(myHello);
}
</script>
<title> Hello </title>
</head>
<body>
<h1>Hello World!</h1>
<button type="button" onClick="load()"> Hit </>
</body>
</html>
And my external file looks like this:
function add(a,b){
return a+b;
};
function sayHello(){
return "Hello";
};
My external file is placed under: WebContent/lib
But when I run this html in IE I get
"Object Expect" on this line
var myHello = sayHello();