| 1 |
function openModal(text) { |
| 2 |
|
| 3 |
var modal = jQuery("#hyperpayModal"); |
| 4 |
var span = jQuery(".close")[0]; |
| 5 |
|
| 6 |
modal.find("p").html(text) |
| 7 |
|
| 8 |
modal.fadeIn(); |
| 9 |
|
| 10 |
span.onclick = function () { |
| 11 |
modal.fadeOut(); |
| 12 |
} |
| 13 |
|
| 14 |
// When the user clicks anywhere outside of the modal, close it |
| 15 |
jQuery(window).click(function(event){ |
| 16 |
if (event.target == modal[0]) { |
| 17 |
modal.fadeOut(); |
| 18 |
} |
| 19 |
}) |
| 20 |
|
| 21 |
} |