can anybody tell me a working jquery pdf viewer plugin(open source)?

Recommended Answers

All 5 Replies

thank you for help.

i've used pdfobject.js from #3 on that list. works well.

$(".layout tr").click(function() {
        var url = "http://" + $(location).attr('host');
        url += "/pdfs/" + $(this).attr('data-href') + ".pdf";
        window.open(
          url,
          '_blank' // <- This is what makes it open in a new window.
        );          
    });
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.