JSFiddle - React, Tailwind, and code Playground

by nobuts

HTML

<div class="left">leftleftleft</div>
<div class="center">
  <h2>
    center
  </h2>
</div>
<div class="right">rightrightright</div>


<a href="#" class="export">export</a>

JavaScript

$('a.export').on('click', function() {
  uriContent = "data:application/octet-stream," + encodeURIComponent($('.center').html());
  console.log(uriContent);
  newWindow = window.open(uriContent, 'neuesDokument');
});