Answers for "jquery window new tab with post"

0

jquery window new tab with post

$.post(url, function (data) {
    var w = window.open('about:blank');
    w.document.open();
    w.document.write(data);
    w.document.close();
});
Posted by: Guest on October-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language