異なるページ内のJavascriptを実行する
以下のような閲覧ページ(index.html)があります。
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Notification</title>
</head>
<body>
<script src='https://cdn.rawgit.com/jaredreich/notie.js/a9e4afbeea979c0e6ee50aaf5cb4ee80e65d225d/notie.js'></script>
<script>
window.onload = function() {
notie.alert(1, '通知', 10);
};
</script>
</body>
</html>
今は通知を表示する以下のメソッドがページのロード完了時に実行されるようになっていますが、
これを別の管理用のページ(例:admin.html)から任意のタイミングで呼び出すことは可能でしょうか?
<script>
window.onload = function() {
notie.alert(1, '通知', 10);
};
</script>