Forum Moderators: open
consider this:
<html>
<body>
<a href="?ref=true">True</a>
<a href="?ref=false">False</a>
</body>
</html
If i call this page directly, in opera as [mydomain.tld...] clicking those links fail.
I do this with IE, and it's worked fine, do I have to start spelling all these links out now?
Mostly to bump your post up, but have you tried:
<html>
<body>
<a href="/?ref=true">True</a>
<a href="/?ref=false">False</a>
</body>
</html>
Or how about:
<html>
<head>
<BASE href="http://www.yourdomain.tld/index.html">
</head>
<body>
<a href="?ref=true">True</a>
<a href="?ref=false">False</a>
</body>
</html>
Just guessing at ways to make Opera connect...
Jim