Skip to content

Instantly share code, notes, and snippets.

@c0bra
Last active April 26, 2018 15:13
Show Gist options
  • Save c0bra/6564cf8a6a1ac1a39b5bfef1ceb8c21c to your computer and use it in GitHub Desktop.
Save c0bra/6564cf8a6a1ac1a39b5bfef1ceb8c21c to your computer and use it in GitHub Desktop.
<html>
<body>
<button id="btn">Test</button>
<script>
var btn = document.getElementById('btn');
btn.addEventListener('click', function() {
// "width=800,height=600,toolbar=1,resizable=1,left=-220,top=-4"
window.open('https://google.com', 'TableauAuth', "width=800,height=600,toolbar=1,resizable=1,left=-220,top=-4");
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment