Guest User

Untitled

a guest
Mar 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $('.popup-modal').on('click', function(){
  2.  
  3. var comp = $(this).closest("article").find("h1 a"),
  4. url_ = comp.attr("href"),
  5. tit_ = comp.text();
  6.  
  7. $("#test-modal div b").text('Título do post: '+tit_);
  8.  
  9. $("#test-modal a").each(function(){
  10.  
  11. var href = $(this).attr("href");
  12.  
  13. $(this)
  14. .attr("href",
  15. href.substring(0, ~href.indexOf("facebook") ?
  16. href.indexOf("u=")+2 :
  17. href.indexOf("url=")+4)
  18. +url_);
  19.  
  20. });
  21.  
  22. });
Add Comment
Please, Sign In to add comment