<script language="JavaScript">
function jumpTo(selObj){
thevalue = selObj.options[selObj.selectedIndex].value;
if (thevalue != 0) window.location= thevalue;
return false
}
</script>
<form action="#" onsubmit="return false" method="post">
<select name="goto" onChange="jumpTo(this);">
<option value="please choose one">Please choose one</option>
<option value="[~id~]&tags=yourtag1">yourtag1</option>
<option value="[~id~]&tags=yourtag2">yourtag2</option>
<option value="[~id~]&tags=yourtag3">yourtag3</option>
</select>
</form>
The only way I can think of using this method is to exclude documents by tag, this way I could exclude mens or womens and always show unisex - would this be possible?i think you would need tvExplorer for that http://modxcms.com/forums/index.php/topic,16456.0.html
&tagMode
Purpose: Select or hide documents with all or any of the tags
Values:
* onlyAllTags show documents that have all of the tags
* onlyTags show documents that have any of the tags
* removeAllTags remove documents that have all of the tags
* removeTags documents that have any of the tags
Default: onlyTags
KP