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 TouchToneTommy 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: keyer
  • Content: Threads
  • Order by date
  1. keyer

    Cookie detection

    Hi, I want to simply detect whether the browser has cookies enabled, so I do as a test: <script language='Javascript'> <!-- if(document.cookie) { document.write(&quot;yes to cookies&quot;); } else document.write(&quot;no to cookies&quot;); --> </script> With IE5.5 this...
  2. keyer

    Stopping Browser Interp. of HTML

    How can I prevent the browser from interpreting the html that follows a Javascript function if a certain condition applies? <script language='JavaScript'> <!-- function cookiesEnabled() { if (! document.cookie()) { document.write(&quot;some message&quot;); <!--...
  3. keyer

    Extract the current URL from Browser

    Is there a way to read the current URL that appears in the browser Address window? Unfortunately, I don't have control over the browser, so what would be nice is if the Link Toolbar contained a link that called an applet from the server to read the current URL, THEN open a new browser instance...
  4. keyer

    Browser Link Toolbar that sends current URL

    Is there some clever way to create a link icon on a browser's link toolbar that, when clicked, opens that URL but also sends as a parameter the URL currently in the browser address window? If not, maybe a little Java applet can do it?
  5. keyer

    How to Program Links Toolbar

    How do I add a link to the Links Toolbar? Through an API? Macro? User-accessible menu? If it requires programming to an API, where do I find documentation? Thanks.
  6. keyer

    Flash &amp; IIS together

    Anyone gotten Fash loadVariables() to work under Win 2K Advanced Server's IIS? I've tried both GET and POST. It works under Personal Web Server, but not IIS. Flash tech support doesn't know why, so far, so if you can answer this one, you get 5 stars. loadVariables() is sending/receiving from...
  7. keyer

    Update from CDROM

    It used to be that when I inserted a Win98 CDROM that was a newer version than what was installed, Windows would ask me if I wanted to update from that CDROM. But it had a checkbox, &quot;Don't Ask Me Again&quot;, which I checked. But now I DO want to be asked again. How can I get Win98 to...
  8. keyer

    Amazing disappearing print queue

    When printing anything, the print queue (local printer) briefly registers the job, then goes blank, and nothing ever goes to the printer. I went through all the on-line help. I changed the BIOS to make the port ECP, then SPP (whatever that means). Also tried different data types being sent to...
  9. keyer

    onSubmit submits no matter what!

    I'm using onSubmit() to validate a form, but it goes on to the next page no matter what I return. My form: <form name=&quot;OrderForm&quot; onSubmit&quot;isReady()&quot; action=&quot;go_on.html&quot;> function isReady(){ if(isEmail(document.OrderForm.email.entry) == false) {...

Part and Inventory Search

Back
Top