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 bkrike 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. youngApprentice

    MapQuest and WebTrends

    Looking to see if anyone's run into WebTrends JavaScript and MapQuest JavaScript interfering with each other. If we put a map on a page, webtrends stops tracking the page.
  2. youngApprentice

    object detection to see if IE 7

    Due to return false; being ignored in IE 7 on Windows Vista, for something like the following: <a href="myPage.html" onclick="popupWindow("myPage.html");return false;">link text here</a> what do I use for object detection to pinpoint IE7? When IE7 hits a link created like this, it makes the...
  3. youngApprentice

    IE 7 and Windows Vista

    Here's a typical situation: you have a link set to open a window if JavaScript is enabled, with the parent window going to the link if JavaScript is not enabled. <a href="/myFolder/myPage.htm" title="my title" onClick="popAWindow('/myFolder/myPage.htm','500','400'); return false;">My Link...
  4. youngApprentice

    decodeURIComponent or unescape question

    Anyone have any ideas on why an apostrophe comes from the server (using JSP) as the numeric entity code of ampersandpound39semicolon and I can't use decodeURI or decodeURIComponent to turn it into ' ? Naturally I mean the symbols where I typed them out. If I use %27 I get the apostrophe when...
  5. youngApprentice

    Prototype Browser Support

    Hi All, Am using Prototype 1.5.1 for Ajax calls to server. Is there an official supported browser list somewhere? Netscape 8.1.3 doesn't seem to work with Prototype Insertion TIA, youngApprentice
  6. youngApprentice

    onsubmit and or onclick

    I'm wondering if you can set an onclick on an input type=image, with or without an onSubmit, to make an Ajax call to submit a form. I'm using Prototype 1.5.1 Internet Explorer seems to be completely ignoring the onclick of an input type=image. TIA, youngApprentice
  7. youngApprentice

    Prototype cross browser syntax (asking again since nobody responded)

    Hi All, For the $ function in Prototype 1.5.1, which is the correct syntax to be cross browser: $($('myContainer')).appendChild(myHeading); or $($('myContainer').appendChild(myHeading)); They both seem to work, and I need this to work in several browsers. The second one seems to be more...
  8. youngApprentice

    positioning vs margin

    I seem to get better cross browser results with floats and relative positioning than floats and positive/negative margins, to shift things around. In general, am I better off using positioning than playing with margins? -TIA

Part and Inventory Search

Back
Top