JSFiddle - React, Tailwind, and code Playground

by Guddu Kumar

HTML

<button onclick="abc()">pdf</button>





<script>
function abc(){

window.open('data:text/html;charset=utf-8,' +
    encodeURIComponent( // Escape for URL formatting
        '<!DOCTYPE html>'+
        '<html lang="en">'+
        '<head><title>Embedded Window</title></head>'+
        '<body><h1 style="color:red;">42</h1></body>'+
        '</html>'
    )
);
}
</script>