You can use jspdf plugin to achieve this. Below sample code which achieves the same - var employees = [ {"firstName":"John", "lastName":"Doe"}, {"firstName":"Anna", "lastName":"Smith"}, {"firstName":"Peter", "lastName":"Jones"} ]; var doc = new jsPDF(); employees.forEach(function(employee, i){ doc.t...