Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

New blank window is not opening through javascript

  • 1 antwoord
  • 1 het hierdie probleem
  • 6 views
  • Laaste antwoord deur Paul

more options

I am building a web app where I need to open blank tab for redirect its working on desktop but not in android.

/**

    * New Window
    */
   const newWindow: any = window?.open(, '_blank');

   if (!newWindow) return;
   /**
    * Loading Text
    */
   const textNode: any = newWindow.document.createElement('h1');
   textNode.appendChild(document.createTextNode('Loading ...'));
   newWindow.document.body.appendChild(textNode);

When the open parameter is empty it should open blank tab but instead its opening the current location. When put 'about:blank" in open parameter, it open blank page but the createNode function & other codes are not running.

I am building a web app where I need to open blank tab for redirect its working on desktop but not in android. /** * New Window */ const newWindow: any = window?.open('', '_blank'); if (!newWindow) return; /** * Loading Text */ const textNode: any = newWindow.document.createElement('h1'); textNode.appendChild(document.createTextNode('Loading ...')); newWindow.document.body.appendChild(textNode); When the open parameter is empty it should open blank tab but instead its opening the current location. When put 'about:blank" in open parameter, it open blank page but the createNode function & other codes are not running.

All Replies (1)

more options

Hi

This sounds more like a web development question than an issue with Firefox for Android.

I recommend that you ask about this at:

https://stackoverflow.com/