Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
1k views

I have need to communicate with a redirect page after a 3D secure Authorization is completed by Checkout Card payment provider. Because I don't want to change the Parent window location I have a ...
Ndifreke's user avatar
  • 784
4 votes
2 answers
3k views

Suppose I have a bunch of same-origin windows or tabs A, B, C, D, and E, that don't hold references to each other. (e.g. a user opened them independently). Suppose A sends a BroadcastChannel message ...
Doin's user avatar
  • 8,254
2 votes
2 answers
3k views

I have a main (parent) page that hosts 3 iframes that are under the same domain. The iframe's src attribute is added on a click event, so the iframe's aren't loaded until needed. What I want is when ...
strawberrymilk's user avatar
8 votes
1 answer
4k views

I tried to open Skype using batch scripting (.bat) in Windows 10 but found that in Windows 10 Skype came as default and it is moved to Windows Apps. Is there any way to do this?
Siluveru Kiran Kumar's user avatar
1 vote
0 answers
229 views

I'm trying to achieve the following in a web page: Users can open multiple tabs/windows of the page. Every few seconds, I need exactly one of those tabs/windows to execute a specific section of code (...
Markus A.'s user avatar
  • 12.9k
1 vote
0 answers
33 views

Normally, code such as: var x = {}; ... delete x.foo; should not cause any errors, even if foo is never defined on x. However, in IE (but not Chrome or Firefox), if delete x.foo; is called from code ...
Doin's user avatar
  • 8,254
0 votes
2 answers
78 views

I'm trying to put some data into a child windows html tag. But it doesn't seem to work. I tried putting it in with some jquery on that child window and that is working fine. Here is the code ...
egalegal's user avatar
0 votes
1 answer
76 views

I'm trying to update a web app that uses the jQuery.data() function to store information. The update involves refactoring the interface so that there are separate windows for different types of ...
Dion's user avatar
  • 41
0 votes
0 answers
586 views

I need to communicate data between two windows on the same domain, this question might have some resemblance to this, but I have a specific problem with ios. I have landed on trying this localStorage ...
jedimorten's user avatar
0 votes
1 answer
1k views

Suppose I have an iframe on my page and I have an event that can be triggered from either the parent or inside the frame but I need listeners on both pages to execute when either one is triggered. ...
Chris's user avatar
  • 6,284
0 votes
2 answers
2k views

I have a HTML5 Framework and have developed and integrated debugger/profiles/console ect. When in fullscreen mode I cannot see the debugger (obviously because the canvas is fullscreen). So, I need to ...
NlaakALD's user avatar
  • 547
1 vote
1 answer
1k views

I have an offine web page using jQuery. I would like it to read a file chosen by the user (or several files). I would like the file picker to be diplayed in another browser window, that would send the ...
dstronczak's user avatar
  • 2,464
1 vote
1 answer
1k views

When I write: var x = window.open('','','width=480,height=500'); x.document.write(' <html> <head> <link rel="stylesheet" type="text/css" href="chat.css" / > <script type="text/...
temporary_user_name's user avatar
1 vote
3 answers
5k views

I have this very simple Javascript to write on a text area when the link is clicked: <head> <script language="javascript" type="text/javascript"> function addtext(text) {document.form....
Trufa's user avatar
  • 40.9k
0 votes
1 answer
434 views

I'm trying to use the Facebook Connect Javascript API. I have a Facebook login button on subdomain.example.com/foo/bar/baz/article.html. Clicking on the button opens a login page on Facebook's domain. ...
user avatar
26 votes
3 answers
21k views

I hear HTML5 has window.postMessage(), but it seems to require having a handle on the window (or tab, throughout this question) you're posting the message to. What if I want to broadcast to all open ...
Kev's user avatar
  • 16.5k