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 Rhinorhino 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: *

  • Users: gimecoffee
  • Content: Threads
  • Order by date
  1. gimecoffee

    read browser window properties

    thread216-1125568 was not answered and I'm curious. I'm writing a web based application and I'd like to query window properties for possible action. For instance: if(window.toolbar.visible == true) { window.open('/startup.html','','width=700, height=500, left=0, top=0, screenX=0, screenY=0...
  2. gimecoffee

    Ajax - crashing IE

    My Ajax routine runs a dozen times (or so) with no problem and then stops all internet connections. Javascript is still working since I have some js popup windows that still activate but my ajax routine (saving data to the server) stops working and I can't post/get a form to the server. I read...
  3. gimecoffee

    AJAX / Firefox crashing on close() response

    My onreadystatechange is calling the function updatePage(see below.) function updatePage() { if(document.getElementById('readystate')){ document.getElementById('readystate').innerHTML='Ready State is '+doc.readyState; } if (doc.readyState == 4) { if (doc.status == 200) { var...
  4. gimecoffee

    External js crashing ie

    Whether '/weblib/lib_ajax.js' is blank, has ONLY 'var a=4;' OR is full of lots of functions, when I activate the child in IE it crashes windows. No problems in Firefox. If I leave win151122.document.write('<script type="text/javascript" src="/weblib/lib_ajax.js"><\/script>'); out of the...
  5. gimecoffee

    window.open crashing ie

    I need to open multiple child windows and have them close if the parent closes or browses away. Here is the essence of the code I'm using. The showreg function can be call multiple times for various 'type,code' and I'm re-using the same window name (win1234) for all the popups so I can make...
  6. gimecoffee

    Variable value as a variable name

    In other programming languages I've used you can the value of one variable as a variable name. For example: I'm tracking child windows and want to be able to send the name of the window I want to open to a function. ---------------------------------------------- function f_open_child(x) {...
  7. gimecoffee

    Adding to a Multidimensional array in parent window

    My opener window has a multidimensional array that I want the child window to add to. I can watch the child add the array to the opener (with no error messages) but after the child is closed and I check the opener, only the object of the array I added is retained. The fields and values are gone...

Part and Inventory Search

Back
Top