Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
 <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.2.60/jspdf.min.js"></script>
  <title>JS Bin</title>
</head>
<body>
  <a href="#" onclick="run();">Download</a>
</body>
</html>
 
function run() {
      var doc = new jsPDF();
      doc.setFontSize(40);
      doc.text(35, 25, 'Does this work?');
      doc.save('Testy.pdf');
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
MrRiopro
0viewers