Hello
I got the bellow code from: http://www.w3schools.com/JS/tryit.asp?filename=tryjs_alert
If you click on the above link and the “show alert box” you’ll understand better what I mean. Ty
<html>
<head>
function show_alert()
{
alert("You have read, understood and accepted Terms and Conditions before entering the site");
}
</head>
<body>
<input type="button" onclick="show_alert()" value="Show alert box” />
</body>
</html>
This exactly the browser onclick popup grey box that I want on my website, also, I notice that RW uses the browser onclick popup box somewhere…
However, I do not know which tab do I enter this code in the page inspector???
Can you help me? Ty.
Kind regards