Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. sHTML += '<div id="myModal" class="modal">';
  2. sHTML += '<div class="modal-content"><p>some text in modal</p></div>';
  3. sHTML += '</div>';
  4. $("Body").append( sHTML );
  5.  
  6. $(".modal").css({"display":"none","position":"fixed","z-index":"1","padding-top":"100px","left":"0","top":"0","width":"100%","height":"100%","overflow":"auto","background-color":"rgb(0,0,0)","background-color":"rgba(0,0,0,0.4)"});
  7.  
  8. $("#documentLink").on('click', function() {
  9. var modal = document.getElementById('myModal');
  10. modal.style.display = "block";
  11.  
  12. //processing logic...
  13.  
  14. //processing finished.
  15.  
  16. modal.style.display = "none";
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement