You can use the following.
window.open( 'https:http://google.com', '_blank' // <- This is what makes it open in a new window. );
in HTML
<button class="btn btn-success" onclick=" window.open('http://google.com','_blank')"> Google</button>
plunkr
source share