TypeError: document.getElementbyId is not a function
JavaScript is case-sensitive. The b
in getElementbyId
should be capitalized.
var content = document.getElementById("edit").innerHTML;
Case sensitive: document.getElementById
(notice the capital B
).