MilanBozic

Code to close the video popup and to reload the page

Oct 5th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. jQuery(document).ready(function($){
  2. document.getElementById('video-5359-1_html5').addEventListener('ended',myHandler,false);
  3. function myHandler(e) {
  4. $('.mfp-wrap').hide();// hides the modal
  5. $('.mfp-bg').hide();// hides the overlay
  6. }
  7. document.getElementById('video-5359').addEventListener('ended',myHandler,false);
  8. function myHandler(e) {
  9. if(!e) { e = window.event; }
  10. document.location.href="http://digiand.com"
  11. }
  12. });
Add Comment
Please, Sign In to add comment