Answers for "ajax open new tab with post"

0

ajax open 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 April-30-2020

Code answers related to "ajax open new tab with post"

Code answers related to "Javascript"

Browse Popular Code Answers by Language