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 SkipVought 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. madura12

    click one link to open a page in 2 windows

    hi, i totally agree with tanderso solution, but as u have asked about opening 2 windows, so i have made slight modification on the code. <script> function openwin(url1,url2) { window.open(url1,&quot;&quot;,&quot;&quot;); window.location = url2 ; } </script> <html> <body> <a...
  2. madura12

    Problem passing parameters to a function

    hi, i don't see any problem with the code.. i think the problem may be -the function might be called before the page get loaded. I think i would be more better to help u if i could see from where the function is being called ! - ayyappan
  3. madura12

    Detecting when the BACK button is clicked? Is it possible?

    it is not possible ... but u can write some server side logic to handle it - ayyappan.
  4. madura12

    document is not an object error

    hi, here is the answer for u'r error.... replace the line 39 by the following code it will start working !! --------------------------------- var objImg ; objImg = eval(&quot;document.&quot;+ changeImages.arguments[i]); objImg.src = changeImages.arguments[i+1]...
  5. madura12

    Submit to Parent from the child

    hi all, Is that possible if they are in same DOMAIN but from different server. By this i mean parent will be loaded from http://server1.help.com and child will come from http://server2.help.com . (here the domain is same .help.com) - spa
  6. madura12

    Window communication when they are at diff domain

    i would like to know whether is it possible if its in same domain, but on different servers say www.server1.people.com (parent window) and www.server2.people.com (child window)
  7. madura12

    Submit to Parent from the child

    fine, but when i use window.location the page will get loaded in the child window not in the parent
  8. madura12

    Submit to Parent from the child

    hi all, A parent window has openned a child window using &quot;window.open()&quot;. can i submit/reload the Parent window from the child window. The important point here i do not want to call any parent's function from the child (like opner.parentReload(), if parentReload() is defined in...
  9. madura12

    Window communication when they are at diff domain

    thanx for the reply ! the synatx for accessing the opner's hidden variable is &quot;opener.window.document.frmSearch.txthdn1.value&quot; , i know that. But the question is, when the parent and child are in different domain the adove syantx is not working. I came to know that i have to change...
  10. madura12

    Window communication when they are at diff domain

    I have parent window in one domain say yahoo.com, from there i open child window say it is in hotmail.com. From the child window i want to access the hidden varaible in the parent window. I was not able to access using &quot;opner.window.document ...&quot;, may be due to diff. domain. I think i...

Part and Inventory Search

Back
Top