Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. (function($) {
  2. var number="123456";
  3. function linkBuilder(abbreviation) {
  4. return "<a href='https://www.test.com/"+ abbreviation + "?sitenumber="+ number +"default'>Click here to visit "+ abbreviation +"</a>";
  5. }
  6. function linkBuilder2(abbreviation2) {
  7. return "<a href='https://www.test.com/"+ abbreviation2 + "?sitenumber="+ number +"default'>Click here to visit "+ abbreviation2 +"</a>";
  8. }
  9. jQuery(document).ready(function() {
  10. var fl = $(".first-link");
  11. if(fl.length > 0 ) {
  12. fl.html(linkBuilder(fl.data("abbreviation")));
  13. }
  14. var sl = $(".second-link");
  15. if(sl.length > 0 ) {
  16. sl.html(linkBuilder2(sl.data("abbreviation2")));
  17. }
  18. });
  19. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement