I want to make this javascript work on my blogger.
his link is: link
What do I do to make this system work on my blogger?
I want to make this javascript work on my blogger.
his link is: link
What do I do to make this system work on my blogger?
I think you should insert at the end of the HTML code the script tag, with the javascript code inside, eg:
<script>
var button = document.querySelector(".b1");
var button2 = document.querySelector(".b2");
button.onclick = function() {
window.open('www.google.com', '_blank');
button2.style.display = "block";}
</script>