X10nD
X10nD

Reputation: 22040

Select pdf urls with jQuery

I want to select urls with pdf file extension and list the pdfs separately, using jQuery or PHP.

Thanks Jean

Upvotes: 2

Views: 2261

Answers (1)

Kobi
Kobi

Reputation: 138037

Use the selector

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

To move them:

$("a[href$='.pdf']").appendTo(".PDFDump");

Working example: http://jsbin.com/opefo

Upvotes: 8

Related Questions