1Note to other developers coming across this, you can run into this if you use a reserved method names e.g. clear.
2<!DOCTYPE html>
3<html>
4<body>
5 <button onclick="clear()">Clear</button>
6 <button onclick="clear2()">Clear2</button>
7 <script>
8 function clear() {
9 alert('clear');
10 }
11 function clear2() {
12 alert('clear2');
13 }
14 </script>
15</body>
16</html>