Via Link:
<a target="_top" href="http://consulity.de">go to consulity.de</a> (or you can use "_blank" for a target as well)
Via Javascript:
window.open('http://consulity.de','_top') // (or you can use '_blank' for a target as well)
Via Google Apps Script:
Code.gs
var url = "";
function doGet() {
var uid = Session.getActiveUser().getEmail();
if (uid == "[email protected]") {
url = 'https://consulity.de';
}
else {
url = 'https://google.de';
}
return HtmlService.createTemplateFromFile('Index').evaluate().setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
Index.html
<!DOCTYPE html>
<html>
<head>
<script src="https://consulity.de/scripts/jquery-1.9.1.min.js"></script>
</head>
<body>
<input id="url" type="hidden" value="<?!= url ?>"/>
</body>
</html>
ref: http://consulity.com/content/GASRedirectSawa.aspx
Leave a Reply
You must be logged in to post a comment.