Open new window when the previous is closed

217 views Asked by At

Is there a way to open a new window when the previous is closed?

I have a website and user clicks a button, I show him a popup. And when he leaves the popup ( clicking on close button ) I want to open another window.

1

There are 1 answers

5
Taniya On

You need to trigger the onclick function on your close button to open a new window.

$(document).ready(function(){
  $(this).on('click', '.close', function(){

   //open new window here
  });

});