Force facebook to open link in external browser for smart phones

前端 未结 4 2043
臣服心动
臣服心动 2020-12-06 18:17

How can I post a link to my website in a Facebook post, and have it open in the user\'s external browser when using smartphone app, not Facebook\'s native browser, which is

4条回答
  •  无人及你
    2020-12-06 18:54

    Hope that this way can help you:

    var ifc = document.createElement("div");
    ifc.innerHTML = ``;
    document.body.appendChild(ifc);
    

    Full sources and example: https://github.com/huantt/force-open-browser/tree/master

提交回复
热议问题