Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. $('#SavetoPDF').on('click', function() {
  2.     $.ajax({
  3.         url: "https://sender.blockspring.com/api_v2/blocks/761172049d80626f51e221bb40e9b4b6?        api_key=731cdcfc88b680bdd6c8e4242677d39e",
  4.         type: "POST",
  5.         contentType: "application/json",
  6.         data: JSON.stringify({ "html": "<html><body><p>Hello world - I love blockspring!</p><img src=\"http://s3.amazonaws.com/blockspring-static/kitten.jpg\" style=\"width: 300px;\"></img></body></html>"}),
  7.         crossDomain: true
  8.         }).done(function(response){
  9.         console.log(response);
  10.     });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement