I have a website running google custom search engine. Whenever a user press on a external link from search he will be redirected. I need to have a redirect/splash page saying "You are now being redirected to "site-title" and a countdown maybe with a button.
This is the google search engine code:
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
google.load('search', '1', {language : 'en'});
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl(
'xxxxxxxxxxxxxxxxxxxxxxxxxxx');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
customSearchControl.draw('cse');
}, true);
</script>
I'm thinking if the onbeforeunload could be used? Or a rewrite?/