tags:

views:

46

answers:

3

How do i so when you pick a option in a select, then it should go to ?sort=Women ?

+2  A: 

You'll need Javascript for that (most probably an onchange event listener).

The MYYN
+2  A: 
 onchange="window.location='?sort='+this.value"
aularon
+1  A: 

or this

<select name="asd" onchange="window.location='?sort='+this.options[this.selectedIndex].value">
Bandpay