how to open next page on click button in javascript

Solutions on MaxInterview for how to open next page on click button in javascript by the best coders in the world

showing results for - "how to open next page on click button in javascript"
Angelo
14 Aug 2016
1<button onclick="abc()">Open</button>
2<script>
3function abc(){
4location.href="www.google.com";
5}
6</script>
similar questions