Essentially - I want the button onClick to open a new window without a fixed size; however, I have no idea how to accomplish this. I've done much research with no success.
This is what I have so far:
<button class="tealbutton tooltip"
onClick="window.open('http://google.com','1','width =700,height=500')">
</button>
If I remove the width and height and click on the button - a new tab will open. I want a new window to open instead.
Your help is appreciated!
Thanks