Well, if you can handle the Css/JS/Html, you can definitely create a drop-down menu.
Thread Starter
Frank
(@fwusquare2com)
Thanks, here is what I came up with for a simple drop menu in case this might be helpful to others:
<div>
<select id="postList_dropdown">
[posts]
<option value="[post_permalink]">[post_title]</option>
[/posts]
</select> <input type="button" id="postList_goBtn" value="GO!" onClick="javascript:window.location=document.getElementById('postList_dropdown').value" />
</div>
Wow, you’ve got the solution 🙂 Also including the js codes, congrats !!
I would appreciate a review if possible.