Philip M
04-12-2003, 06:45 PM
I have a form which requires JavaScript to be enabled. Those whose browsers are not enabled are re-directed to another page:-
So:-
<HEAD>
<NOSCRIPT>
<meta http-equiv="refresh" content="0; URL = nojavascript.html">
</NOSCRIPT>
This seems to work OK.
The page nojavascript.html invites customers to send an email rather than use the form:-
<......If you wish you can simply <a href= "mailto:sales@mydomain.co.uk"> e-mail</a> your order .....>
but when the user clicks on e-mail OE pops under rather than pops up.
Any ideas why, or how I can overcome this?
15 minutes later - I seem to have fixed this by altering the meta tag to:-
<meta http-equiv="refresh" content="1; URL = nojavascript.html">
So:-
<HEAD>
<NOSCRIPT>
<meta http-equiv="refresh" content="0; URL = nojavascript.html">
</NOSCRIPT>
This seems to work OK.
The page nojavascript.html invites customers to send an email rather than use the form:-
<......If you wish you can simply <a href= "mailto:sales@mydomain.co.uk"> e-mail</a> your order .....>
but when the user clicks on e-mail OE pops under rather than pops up.
Any ideas why, or how I can overcome this?
15 minutes later - I seem to have fixed this by altering the meta tag to:-
<meta http-equiv="refresh" content="1; URL = nojavascript.html">