Не работает require.
Есть файл html, загружающий файл js.js
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<script>
var framework = require("js.js");
</script>
<body onload="init()">
<input type="button" id="button" value="button">
<input type="button" id="button1" value="button">
<div id="pop">
text1text2
</div>
</body>
</html>
а вот и сам файл js.js:
вот вопрос,
function follow() {
document.getElementById("pop").innerHTML = "text777";
}
function follow1(){
document.getElementById("pop").innerHTML = "text888";
}
function init() {
var button = document.getElementById("button");
if (button.addEventListener) {
button.addEventListener('mouseover',follow);
}
var button1 = document.getElementById("button1");
if (button1.addEventListener) {
button1.addEventListener('mouseover',follow1);
}
}
Почему функции из js.js не работают в index.html ?
Как вывести в список все функции из js.js для var framework из index.html?