Questions tagged [browser-tab]

Refers to issues relating specifically to tabs in a web browser, usually issues that affect multiple tabs or communication between tabs.

115 questions
0
votes
1 answer

How to make browser tab active for my website or maximized when its minimized

I am building order dashboard for client, is there any way that when client browser window is minimized or tab is not active, I want to show tab tab active and maximized if its already minimized. Ajax call run after 30 seconds and check for new…
Zaib Khan
  • 470
  • 4
  • 7
0
votes
4 answers

How to close Microsoft Edge browser's current tab from command prompt?

>start microsoft-edge:http://google.com Its opened google.com in edge browser new tab. Now I want to close. Here I am using stop but its not working. >stop microsoft-edge:http://google.com
0
votes
0 answers

Open url is a specific Tab using default browser

How do I open a url in VB.NET 2017, using the default browser and in a specific tab ? The tab will have specific words in it, so I can reference is that way. Is this possible ??
James_Inger
  • 83
  • 2
  • 10
0
votes
0 answers

Focus Facebook tab from browser notification triggered from canvas app / iframe

I have an facebook canvas app that loads in an iframe on facebook, and I want to be able to focus the facebook tab in the browser from my code. My app shows native browser notifications through the browser's Notification API (not facebook…
miir
  • 1,814
  • 1
  • 17
  • 25
0
votes
2 answers

Can I tell selenium to operate in tabs without switching to them?

Let me start by saying that this is my first post to stackoverflow, so please tell me when I did something wrong. I did a project where I open a firefox, create multiple tabs and then go to different websites in each of them, startin from left to…
Honduriel
  • 117
  • 1
  • 10
0
votes
0 answers

Display the same values in several browser windows or tabs

I have a day counter in a server and it works. But if I open another tab or window browser the counter is displayed but with a difference in time. What I want to do is to display the same values in both browser windows or tabs. I tried to use…
axmug
  • 476
  • 2
  • 10
  • 26
0
votes
1 answer

Why am I unable to reach parent window's variables?

Let's suppose I open a web-page and run this Javascript: var test = "Success"; window.open(window.location.href); Then, in the opened window console.log(window.parent.test); will yield undefined. I can solve the problem by doing this: var test =…
Lajos Arpad
  • 64,414
  • 37
  • 100
  • 175
0
votes
1 answer

jquery open several pdf in new tabs

I have an array of Strings which are the directoriess of my pdfs such as: var fluids_array = ["Fluid/no1.pdf", "Fluid/no2.pdf"]; for(var i in fluids_array) { var fluidplan = fluids_array[i]; var myWindow =…
moody
  • 404
  • 7
  • 19
0
votes
1 answer

Stop Jquery timer from triggering twice on multiple browser pages

I'm working on a small game in Jquery in my spare time to learn Jquery. The basic concept adds a points everytime the timer ticks and updates the score which is stored in a cookie. This is the timer that handles most off the…
Crecket
  • 718
  • 2
  • 7
  • 24
0
votes
1 answer

Show DIV on Mouse Movement Towards Closing Browser Tab Cross-Platform

My client wants an attractive DIV to show up when someone tries to move their mouse up to close the browser tab, and works cross-platform in the latest browsers. What is the jQuery technique for detecting that particular kind of mouse movement?
Volomike
  • 23,743
  • 21
  • 113
  • 209
0
votes
1 answer

Is there any way to programmatically bring a browser tab to front (cross-browser)?

I want my website's browser tab to be brought to front, when it is referenced by a hyperlink, regardless of any browser setting that may forbid this behaviour. I am aware that this is potentially a bad (or at least annoying) thing, however, my users…
Sir Hackalot
  • 521
  • 6
  • 16
0
votes
1 answer

Signalr send message to client in multiple tabs

I'm trying to figure out how to send a message to one client that is connected in multiple tabs using SignalR. The problem is when I send the message to the specific client, it only gets to the first tab instead of the current tab of the clients…
0
votes
1 answer

How to open a link in new tab using javascript/jQuery

I want to open a url in new tab. I am using following code to open url in new tab. var url = "/Billing/DownloadEDIForMultipleClaim?month=" + month + "&BillRequestIds=" + billRequestIds.join(',') + "&PatientIDs=" +…
Manoj
  • 4,951
  • 2
  • 30
  • 56
0
votes
0 answers

url redirection not happening in IE in crossrider extension

I am trying to open a url by using crossrider API in my extension appAPI.openURL({ url: mUrl, where: "tab", focus: true, height:window.screen.availHeight, …
saikiran
  • 2,247
  • 5
  • 27
  • 42
0
votes
1 answer

Passing ID from Browser Tab/Window/Page to Server (ASP.NET MVC)

I create and safe a Browser Windows GUID in the sessionstorage on client side via javascript. So it stays alive until the tab is closed. Now I want to pass this information on every request from this specific browser window to the server side so I…
Palmi
  • 2,381
  • 5
  • 28
  • 65