Viewing PDFs
Ensure a seamless experience when viewing PDF documents.
Last updated
Ensure a seamless experience when viewing PDF documents.
Last updated
// links in your website ending with the .pdf extension
CobrowseIO.pdfLinks = ['*.pdf']
// links to the example.com domain with the path starting with /assets/pdfs/
CobrowseIO.pdfLinks = ['https://example.com/assets/pdfs/*']
// links to any domain with /pdfs/ as part of the path and the .pdf extension
CobrowseIO.pdfLinks = ['*/pdfs/*.pdf']// links in your website ending with the .pdf extension
CobrowseIO.pdfLinks = [/.*\.pdf/]
// links to the example.com domain with the path starting with /assets/pdfs/
CobrowseIO.pdfLinks = [/https\:\/\/example\.com\/assets\/pdfs\/.*\.pdf/]
// links to any domain with /pdfs/ as part of the path and the .pdf extension
CobrowseIO.pdfLinks = [/.*\/pdfs\/.*\.pdf/]