Guest User

Untitled

a guest
Sep 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <div class="wallets-deposit" id="myModal">
  2. <div class="wallets-deposit__inner" >
  3. <div class="wallets__p-title">
  4. <h5>Withdrawal</h5>
  5. <div>Available: <span id="span_in_title_withdrawal"></span></div>
  6. <div class="fragment" id="cancel"> <span class="closebtn" style="position: relative; bottom:auto; right: 10px" >&times;</span></div>
  7. </div>
  8.  
  9. <script>
  10. var modal = document.getElementById('myModal');
  11. window.onclick = function(event) {
  12. if (event.target == modal) {
  13. modal.style.display = "none";
  14. }
  15. }
  16. </script>
Add Comment
Please, Sign In to add comment