Reputation: 645
Want to make a confirm box appear before someone leave my site. They have information that will go lost if they leave and you don´t want that right. Pleas be specific with were I should put the code and so since I´m not the best of coders...
Upvotes: 5
Views: 6016
Reputation: 11342
window.onbeforeunload = function(){
return "Are you sure you wanna leave my site?";
}
Upvotes: 7