Learning to use Bottle.py and made a page with a button:
<!DOCTYPE html>
<html>
<head><title>button</title></head>
<body>
<script>function test(){
console.log("a");
document.getElementById("b").innerHTML = "abcd";
return false;}</script>
<form onsubmit="return test()">
<button type="submit">Button</button>
</form>
<div id="b"></div>
</body>
</html>
When I press the button, nothing prints out on the javascript console the div element does not get populated with text.
from bottle import route, template, run
@route('/button')
def b():
return template('button')
This is (obviously) a minified version of what is actually happening in my app.