Visualization accompaniment (pop up)

Asked

Viewed 45 times

0

Hello,

I have a question about HTML, I need to control how many times a pop up is opened, it is programmed to open every time a computer starts.

I need to throw this data to an excel (due to the workplace guidelines), every time it opens on the computer, excel receives a warning and adds +1 in the table, however, I do not know if it is possible. Does anyone know if there is a solution in PHP or Javascript?

  • It is a popup html or a popup browser window ?

  • It’s in HTML anyway.

  • Put in the question the code that makes the call of this popup, to know how you start it, then you can say how to do it.

1 answer

0

I don’t know what popup you’re saying, whether it’s some modal or whether it’s an Alert, but it would be something simple to check. Another thing I don’t understand is:

it is programmed to open every time a computer starts up.

What does that mean? That the popup is not on the web? I didn’t get it right.

The check would look something like this:

$PopupAbriu = 0;
function PopupAbrir(){
   //Aqui o que mais a função vai fazer
   $PopupAbriu += 1;
}

After you every time the system starts, you will have to start this function too, with the PopupAbrir(). But like I said, it’s kind of open what you really want.

Abs;

Browser other questions tagged

You are not signed in. Login or sign up in order to post.