Mor Baruch
Mor Baruch

Reputation: 59

Find PDF file with Jquery

I want to find PDF files with jquery. I did it with DOCX files with the code:

 $(el).find('a[href$=".docx"]')

how can I do it for PDF files?

Upvotes: 0

Views: 266

Answers (1)

Amit Joki
Amit Joki

Reputation: 59252

Just replace the .docx to .pdf

$(el).find('a[href$=".pdf"]')

Upvotes: 1

Related Questions