JSFiddle - React, Tailwind, and code Playground
HTML
<a onclick="postData();">dfsdfsd</a>
JavaScript
function postData() {
$.post('popup.aspx', { text1: "aaa", text2: "bbb" }, function (result) {
WinId = window.open('', 'newwin', 'width=400,height=500');
WinId.document.open();
WinId.document.write(result);
WinId.document.close();
});
}