Guest User

Untitled

a guest
Nov 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div class="search_item_list clearfix" id="response">
  2. <?php foreach($jobs as $job){
  3. ?>
  4. <a class="copy_text" data-toggle="tooltip" title="Copy to Clipboard"
  5. href="<?=base_url().'home/company_profile_detail?id='.$job['company_id'];?>"><span class="icon link"><i class="fa fa-link"></i></span>Copy Link</a>
  6. <?php } ?>
  7. </div>
  8.  
  9. <script>
  10. $(".copy_text").click(function(e){
  11. e.preventDefault();
  12. var button = $(this);
  13. var text = button.attr("href");
  14. text.select();
  15. $(document).execCommand("copy");
  16. alert("Copied the text ");
  17. })
  18. </script>
Add Comment
Please, Sign In to add comment