Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 169 Bytes

File metadata and controls

9 lines (8 loc) · 169 Bytes

Open google when I click the button element

$(document).ready(function(){
  $("button").click(function(){
	window.open('http://www.google.com');   
    });
});