Guest User

Untitled

a guest
Jun 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <a class="development" href="[variable content]">X</a>
  2.  
  3. <a class="development" href="(.*?)">X</a>
  4.  
  5. <a class="development" href="[^"]*">X</a>
  6.  
  7. <a class="development"
  8. href="[variable content]">X</a>
  9.  
  10. <a class="development" href="[variable content]">X
  11. </a>
  12.  
  13. $("a.development").onclick = function() { return false; }
  14.  
  15. $("a.development").attr("href", "#");
  16.  
  17. /<a class="development" href=(?:"[^"]*"|'[^']*'|[^s<>]+)>.*?</a>/m
Add Comment
Please, Sign In to add comment