I am familiar with appending a bookmark to a URL to direct a browser to an area of the page.
Is it possible to get the same functionality from a form submission?
I tried adding the bookmark as a hidden var but the browser changes the hash is to it's character number (%23) and treats the bookmark as simple text.
Keith
Code:
[URL unfurl="true"]http://www.mysite.co.uk/cgi-bin/myscript.cgi?pocode=ABC[/URL] 123#baskit
Is it possible to get the same functionality from a form submission?
I tried adding the bookmark as a hidden var but the browser changes the hash is to it's character number (%23) and treats the bookmark as simple text.
Code:
<form action = 'audio2u.cgi'>
<input type='text' name='pocode' value=''>
<input type='submit' name='call' value='Change Postcode'>
[COLOR=#EF2929]<input type='hidden' name = 'lnk' value='#baskit'>[/color]
</form>
Keith