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 Mike Lewis 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. spiderplant0

    Form POST request returns previous data - refresh problem

    Thanks vragabond that worked. <html> <head> </head> <body> <p>Test values for quadkey: 03113332000 03113323100 03113323010 03113322201</p> <form method="post"> <input type="text" name ="quadkey" value="03113322201"> <input type="text" name ="type"...
  2. spiderplant0

    Form POST request returns previous data - refresh problem

    Hi, I'm having problems fetching data from a server. I have a web page that makes a request for an image file. The particular image returned depends on the 'quadkey' input. See code below. The problem is, each time I request a new image, Firefox prefers to display the old image. E.g. when I...
  3. spiderplant0

    document.evaluate() on a string or virtual document

    here is the solution in case anyone's interested var stg = "<div>The best-laid<br> schemes o' <br><span>mice</span> an' men</div>"; var newDiv = document.createElement("div"); newDiv.innerHTML = stg; var recordNodes = document.evaluate( ".//span", newDiv...
  4. spiderplant0

    document.evaluate() on a string or virtual document

    Hi, How do I use the document.evaluate() method on a string of HTML to find something within the string? E.g. if I have this string: var stg = "<div>The best-laid schemes o' <span>mice</span> an' men</div>"; I'd like to convert this string into something that I can run the document.evaluate()...
  5. spiderplant0

    object callback changes 'this'

    Dan, tsuji, thanks for your ideas. I eventually settled on replacing this... this.subObj1.subMethod1 = this.method1; with this... var me = this; this.subObj1.subMethod1 = function(){me.method1();};
  6. spiderplant0

    object callback changes 'this'

    Hi, I having problems using 'this' in an objects method. I have simplified the problem. I instantiate object obj1 which inturn instantiates subObj1. subObj1 is a slave to obj1. obj1 registers a handler function called method1 with subObj1 so that subObj1 can tell obj1 when it has finished. For...

Part and Inventory Search

Back
Top