118 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
31
views
setInterval() alternative for web for inactive windows/ tabs [duplicate]
The setInterval() web API does not work when the browser tab is inactive. Is there any alternative for it that can keep the timer intact even when the browser tab/ window is inactive?
0
votes
1
answer
154
views
How to share information between browser tabs that are opened from specific tab
If I open an app (SPA) in multiple tabs (manually opened tabs), I want to make some of the information persistent as a session for each tab. Session storage does this job.
But when I right click on an ...
0
votes
0
answers
47
views
Timer Continues in Background but Does Not Update Backend Data - PHP Session and AJAX Issue
I have developed a PHP application where a timer on a web page continues to run even when the browser tab is in the background, particularly on mobile devices. The timer updates visually, but I'm ...
-2
votes
1
answer
42
views
Transferring data between cards
I'm a beginner in creating browser plug-ins. Could some kind soul help me with the best way to transfer data between browser tabs? I would like to transfer data from a script running on an inactive ...
0
votes
0
answers
269
views
In the browser inactive tab, javascript alert is sometimes ignored and the page is moved
I implemented the logout function in JS if 5 minutes have passed by checking every 1 second as shown below.
// logout
let restAutologoutTime = (60 * 5); // 5minute
autoLogout = setInterval(function() {...
1
vote
1
answer
772
views
when tried popstate function its not working on React, how to trigger browser backtab click once confirmed logout button modal showed but won't
When broser back Tab clicked after, React posState function to confirm logout function how i trigger.
how to implement React application when i triggered back tab, its once confirmed in modal ok ...
0
votes
0
answers
105
views
Favicon doesn't show up in the browser tab on the index-page (Safari)?
I have tried different webservices to generate favicons and respective link- and metatags to include in my html-header. All gives the same error. The favicon shows up in the browser tab on all ...
1
vote
1
answer
808
views
I want my reactive state to be same (updated) between various tabs (unfocused), when it gets updated in any tab in Vue 2
Code in my template
<!-- Switch Button for online/offline status -->
<div v-if="user.role=== 'accountant' || user.role=== 'supervisor'">
<v-chip v-if="...
1
vote
2
answers
522
views
How to switch tabs in a browser Web Extension
As title states ^
In these docs, there's a lot of support for working with tabs.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs
Including moving tabs around, deleting ...
1
vote
1
answer
759
views
Is there any way to shift to previous browser tab using javascript?
Im running an application, and after a few operations I end up at the last tab (circled in black). I need to close the red circled tab because it is a duplicate of the blue circled tab. Is there any ...
0
votes
0
answers
2k
views
How to add My SVG Logo to the tab bar of my website
I got my logo which is an SVG file for my react project which is saved in my images folder , i wanted to use this SVG icon on my browser tab , am i able to use SVG files ? and how i can link to it , i ...
user avatar
user18095537
1
vote
0
answers
152
views
Old tab stops sending requests to API React
I have a problem that is hard to describe. The problem is reproduced in 2 cases.
Old browser tab (not closed from yesterday's session).
After the token is expired, I redirect to the login page, and ...
1
vote
2
answers
2k
views
Python - Displaying a web site in the same browser tab each time webbrowser.open is called
In Python, I would like to initially open a new browser tab and display a web site. The program will be displaying other png images before cycling back to displaying the web site again. It's like a ...
0
votes
1
answer
1k
views
How to set browser tab title with route name in React Native
currently in my app, the browser tab title is just the name of the screen. However I want to set the tab title to {APP_NAME} - {PAGE_NAME}. I am using a <Stack.Navigator/> and I know that you ...
0
votes
1
answer
600
views
Force Crash FireFox Tab Using JS/firefox:about
Like in chrome we can simply force crash a tab by hitting chrome://crash in the address bar like-wise I would like to know if the same could be done for a tab in firefox ?, if yes how do could I ...