Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pygmalion3

    Multiple Conditionals

    I'm not entirely sure how I can check for the window's condition without asking it to recognize the window's name to begin with. If I ask it to check firstWin.open or !firstWin.closed, I still get the undefined error. I've tried defining the name in the same script as firstWin = //nothing, so...
  2. pygmalion3

    Multiple Conditionals

    I've been trying to create a javascript function that goes through a series of conditionals to check for specific open windows, and, provided they're there, re-focus them. Here's part of the script I'm using: function recallPopUps(){ if ( (! (typeof firstWin == "undeclared") ) && ( ...
  3. pygmalion3

    referencing pop-ups (attempt #2)

    I'm having the hardest time finding out how to focus specific pop-ups on command. I'm told that if I name the window attributes upon opening, like so: WindowName=window.open("doccument.html") that I can reference that window from other windows. Also that I can re-focus said window by...
  4. pygmalion3

    recalling pop-ups

    I've found that using onBlur and focus() together will typically disable any other frame... ideally I'd like to find a way to focus the window by href or onLoad. Something like windowName.focus() or window.focus(windowName) but am not quite sure how to accomplish this. Yeah, I'm a bit green...
  5. pygmalion3

    recalling pop-ups

    Thanks for the tip. I've tried it, but I can't seem to get the desired effect. It only wants to work in IE, window.close() doesn't want to work, etc. Am I using it correctly? I was wondering if it's possible to have a window.focus() link refer to the pop-up from another window?
  6. pygmalion3

    recalling pop-ups

    Is it possible to create a link in one window that will recall an already open pop-up window to the top -OR- Is there a way to keep a pop-up at the top while another window is active? Thanks in advance, pyg
  7. pygmalion3

    recalling pop-ups

    Is there a way I can create a link that will bring an already open pop-up window to the top?

Part and Inventory Search

Back
Top