Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $('a[href*="."]').not('a[href$=".pdf"]').not('a[href$=".html"]').filter(
  2. function() {
  3. stringi = $(this).attr("href").toString();
  4. return (
  5. !(stringi.split(".").slice().pop().indexOf('/') > -1)
  6. )
  7. }).addClass("download")
  8. $('a[href$=".pdf"]').addClass("pdf");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement