Hello!
I have some troubles. I want use form, for select link in taxonomy. Ex.
In taxonomy i create alias to "185/70". And use whis:

<form action="/" method="get">
<select name="" size="1">
    <option value="185/70">185*70</option>
</select>
<input type="submit">
</form>

But in result i have link - domain.org/?=185%2F70
How i can fix it?

P.S. Sorry for my english. =)

Comments

anner’s picture

try

<form action="/" method="get">
<select name="" size="1">
    <option value="185&frasl;70">185*70</option>
</select>
<input type="submit">
</form>

I'm not entirely sure, but since it appears to be an encoding issue, this might fix it.

Fanny’s picture

as result i have: ?=185%E2%81%8470
and i can't remove ?= from begin string. =\

dman’s picture

OK, I see what you are trying to do. :-B

Try a google on "drop down javascript navigation" and you'll find something like http://www.thesitewizard.com/archive/navigation.shtml

Your example got exactly what you asked for. To use selectboxes in a non-standard way to become gotos, you need a tiny tad of script.
... and then, if you wanted to be compliant you should also have a back-up client-side version too, but I won't go into that. I'm sure you can find a hundred tutorials on the topic.
There's a dozen slightly different ways to get the same result, you'll need to find one you can understand. See also any javascript warehouse/gallery site.

.dan.

http://www.coders.co.nz/

Fanny’s picture

I know, that i go to wrong way, and using only forms. Now it work and i get some exp. =)
Snx. Really. =)