Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Rudy Tan
Courses Plus Student 16,635 PointsHow to create exit popup in javascript?
Hello everyone,
I am stuck on this problem. I want to create an exit popup that triggered whenever user try to leave the browser (either by clicking the close button or back button).
Thank you
1 Answer

Steven Parker
224,848 PointsHandle the beforeUnload event.
Assuming you use jQuery:
$(window).on("beforeunload", function() {
return confirm("Do you really want to close?")
}
);
Rudy Tan
Courses Plus Student 16,635 PointsRudy Tan
Courses Plus Student 16,635 PointsThank you for the answer.
I tried it and it doesn't work in firefox.
Steven Parker
224,848 PointsSteven Parker
224,848 PointsThe MDN documentation for the event says:
Also: