× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Shannon O'Donnell wrote:
This may sound stupid...but I'm pretty sure I have a valid use for this
functionality:


Is there an HTML equivalent of GOTO?


What I want to do is throw some JavaScript onto a page, and if certain
conditions are not true...I want to close the page/and/or jump around a
block of HTML code (code that is NOT part of the JavaScript).

Here's a code fragment that I want to perform:

<HTML>

<BODY>

<SCRIPT Language="JavaScript">
 if (document.refrrer != www.ebay.com) {
   document.write ("You DID NOT come from eBay...so you are welcome here!");
 else
  document.write("We do not allow eBay users to visit our website. Begone!");
 }
</SCRIPT>


<H1>Welcome Friend!</H!> </BODY> </HTML>


What I want to do is to put some kind of "goto" in that last block of code so that the remaining HTML is not executed. In other words... I don't want the "Welcome Friend" text to be displayed in this example.


Any ideas? Window.close won't work becuase it's too easy for the user to just avoid closing teh window.

This is probably better handled on the server. A few magical incantations in your Apache configuration should set you up. Look up the Apache module mod_rewrite and the RewriteCond and RewriteRule directives.


But a more fundamental issue is that the HTTP_REFERER attribute may not be set. Or if it is, it may not be accurate. And if someone really wants to visit your site and knows that it can't be reached from some particular site, the visitor can just type the URL directly into his browser anyways.

Cheers! Hans



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.