Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <? foreach($links as $link) {?>
  2. <div style="width: 20%;float:left;"><? echo $link['name']; ?></div>
  3. <div style="width: 80%;float:left;"><input type="text" class="visible-input" value="<? echo $link['href']; ?>"/>
  4. <button onclick="copyToClipboard('.visible-input')" class="visible-button">Сохранить</button>
  5. <script>
  6. document.querySelector(".visible-button").onclick = function() {
  7. document.querySelector(".visible-input").select();
  8. document.execCommand('copy');
  9. };
  10. </script>
  11. </div>
  12. <? } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement