I have a problem with multi pdf downloads
I have a list of a and at the href I have links of several pdfs, after that I made a cycle and foreach a that I found I created an iframe, where in the place of the source I insert a value of the href of the a
This works in all browsers except internet explorer.
$('.btns a').each(function(i){
var source = $(this).attr('href');
$('#content_iframe').append('<iframe id="someId" src="'+source+'" />');
});