How to load a pdf file into a div using jQuery/AngularJs
ex:
$.get('/helper/test.pdf', function(data){
$("#div1").html(data); // like to render pdf in this div
});
or in angularJs
$http({ method: 'GET', url: '/helper/test.pdf'}).
success(function (data) {
$scope.model.pdfData = data;
}).
error(function (data) {
//alert(data);
});
Please help me to do this