Recently, J. Landman Gay wrote: >> The down side is that both methods open in a new tab. I'd rather it >> acted like a regular link. >> > > Come to think of it, it's a browser preference that determines how the > browser will respond when getting a request from another application. > The default headers that Rev sends identify it as an external app. > > Is there a header I can use that will make the browser think it's an > internal link instead?
I was going to mention browser preferences as well, but also there is the HTML target attribute: _self, _blank, _parent, _top. If you're using an anchor form of linking, then you might try "_self" or "_top": <a href="http//www.runrev.html" target="_self">RunRev</a> Regards, Scott Rossi Creative Director Tactile Media, Multimedia & Design _______________________________________________ use-revolution mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
