Reputation: 22040
I want to select urls with pdf file extension and list the pdfs separately, using jQuery or PHP.
Thanks Jean
Upvotes: 2
Views: 2261
Reputation: 138037
Use the selector
$("a[href$='.pdf']")
To move them:
$("a[href$='.pdf']").appendTo(".PDFDump");
Working example: http://jsbin.com/opefo
Upvotes: 8