最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Notification onclick - Open a link in new tab and focus - Stack Overflow

programmeradmin1浏览0评论
function spawnNotification(theBody, theIcon, theTitle, theLink) {
  var options = {
    body: theBody,
    icon: theIcon
  }
  var notification = new Notification(theTitle, options);
  notification.onclick = function() { 
    var myWindow = window.open(theLink,"_blank");
    myWindow.focus();
  };
  setTimeout(notification.close.bind(notification), 4000);
}

I am trying to open a new tab and to focus it , when the notification box is clicked.

I am using the above fuction to open a link in a new tab and to focus on that newly opened tab. But its not working.

New tab is opened, but the focus remains on the old tab itself. How can I solve this?

function spawnNotification(theBody, theIcon, theTitle, theLink) {
  var options = {
    body: theBody,
    icon: theIcon
  }
  var notification = new Notification(theTitle, options);
  notification.onclick = function() { 
    var myWindow = window.open(theLink,"_blank");
    myWindow.focus();
  };
  setTimeout(notification.close.bind(notification), 4000);
}

I am trying to open a new tab and to focus it , when the notification box is clicked.

I am using the above fuction to open a link in a new tab and to focus on that newly opened tab. But its not working.

New tab is opened, but the focus remains on the old tab itself. How can I solve this?

Share Improve this question edited Jun 19, 2017 at 7:39 Anoop Mayampilly Muraleedharan asked Jun 17, 2017 at 9:44 Anoop Mayampilly MuraleedharanAnoop Mayampilly Muraleedharan 4172 gold badges9 silver badges27 bronze badges 2
  • window.open(url, '_blank') opens a new tab and puts it in focus by default so there must be something else causing the focus to remain in the original tab. – Mathias W Commented Jun 17, 2017 at 10:27
  • @MathiasW I will edit this question and add more of my code to this. So that you can help me with this. – Anoop Mayampilly Muraleedharan Commented Jun 17, 2017 at 10:34
Add a ment  | 

1 Answer 1

Reset to default 7
function spawnNotification(theBody, theIcon, theTitle, theLink) {
  var options = {
    body: theBody,
    icon: theIcon
  }
  var notification = new Notification(theTitle, options);
  notification.onclick = function(event) {
    event.preventDefault(); // prevent the browser from focusing the Notification's tab
    window.open(theLink, '_blank');
  }

  setTimeout(notification.close.bind(notification), 7000);
}

I changed my code as shown above. Now it works perfect. See: https://developer.mozilla/en-US/docs/Web/API/Notification/onclick#Examples

发布评论

评论列表(0)

  1. 暂无评论