tags:

views:

22

answers:

1

Hello,

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

Thanks Jean

+3  A: 

Use the selector

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

To move them:

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

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

Kobi