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 gkittelson 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. drumin

    Detecting platform

    Thanks for that. Still having problems. Here's what I have now... <script LANGUAGE=&quot;JavaSCRIPT&quot;> function platform() { var mac=(navigator.platform==&quot;MacPPC&quot;)?true:false; if (mac){ = true then window.location.href =...
  2. drumin

    Detecting platform

    I have this script on top of one of my pages to detect if the user is on a Mac... <script LANGUAGE=&quot;JavaSCRIPT&quot;> function platformversion() { var ua = window.navigator.userAgent var platform = ua.indexOf (&quot;Mac&quot;) if (platform = &quot;Mac&quot;)...
  3. drumin

    Determine platform

    I'm trying to develop the platform which the user is on...but only for Mac. So, when you navigate to the page the script will check the platform and if Mac then you will be taken to a different page. Would I use... indexOf (&quot;Mac&quot;)? I'd appreciate your help Thanks!
  4. drumin

    Detecting browser type

    I'm looking to develop a piece of code which will determine the browser type of the user. Once this has been determined the user will be directed to the respective page. Users with Mac/Netscape/IE 5 and under will go to one page Users with IE 5.01 and over will go to another. This needs to be...
  5. drumin

    Detecting browser type

    I'm looking to develop a piece of script which will determine the browser type of the user. Once this has been determined the user will be directed to the respective page. Users with Mac/Netscape/IE 5 and under will go to one page Users with IE 5.01 and over will go to another. This needs to...
  6. drumin

    validation of check boxes

    Thanks Todd. That worked nicely! :-)
  7. drumin

    validation of check boxes

    In one of our forms we have a page with lots of checkboxes on it. These are all grouped together, into groups with the name C1, C2, etc. At the moment the customer can bypass these and go to the next page. We need to stop this and force them to choose an option (e.g. this could be one C1 or...
  8. drumin

    Link from pop up window

    We are trying to link back to the opener window from a pop up. I have done this already from 1 pop up to a specific page using TARGET &quot;MainPage name&quot;. Our problem is we now have to do this from a pop up that can be accessed throughout our site (very extensive site so it is not really...
  9. drumin

    Pop up windows - random content.

    Hi Paul I would be most interested in the code! Please send it, it does sound like a viable route. My plan was to look into JavaScript initially and if no joy there have a look at an ASP solution. Many thanks Philip Reid :-)
  10. drumin

    Pop up windows - random content.

    I need to devise a window that automatically pops up when a user enters a specific page but displays content randomly each time they access this page. i.e. first visit it'll have info on Product A, 2nd visit it'll pop up with info on one of the other products. Any ideas??? I know how to do an...

Part and Inventory Search

Back
Top