function popit(){
return 'You are leaving the page.';
}
var host = 'https://weplaylikepro.blogspot.com';
$(function(){
window.onbeforeunload = popit;
// selects all links that have an href starting with `host`
$(document).on('click', 'a[href^="' + host +'"]', function() {
window.onbeforeunload = null;
});
});