I have a web app where html pages are created in an amazon s3 bucket. These html pages reference javascript with . where should I put the javascript source files in order for this to be rendered correctly with the javascript? Should I put them in the same bucket in that amazon s3 account? Would the html pages be rendered faster if the source files were in a static assets folder of my web app? If I am putting them in the amazon s3 bucket, how should I reference them; by path relative to the bucket or by the absolute full domain path given by amazon?
edit: I got it working with the following javascript ex:
test.html:
<html>
<head>
<script src="display.js">
</script>
</head>
<body>
<input type="button" onclick="popup()" value="Click Me!">
</body>
</html>
display.js:
function popup() {
alert("Hello World")
}