I need to open new tab in browser where I want to specify basic instructions (maybe html string?) for user (I don't have website for that).
Closest I got is this from w3schools:
var myWindow = window.open("", "MsgWindow", "width=200,height=100");
myWindow.document.write("<p>This is 'MsgWindow'. I am 200px wide and 100px tall!</p>");
However I have problems with that:
- opens new window (I really prefer new tab) - here in comments says depends on user browser settings (so maybe solved)
- does not work in Chrome (I tested 86.0.4240.198) - successfully tested in FF