This is probably vague, I don't really know what I am doing.
Doing this inside of a frame, I want to open in _top not the same frame the code is in.
Code:
<select name="page_id" id="page_id" onchange="javascript:dropdown_post_js(this)">
Code:
<script type="text/javascript">
function dropdown_post_js(menuObj) {
var i = menuObj.selectedIndex;
if(i > 0)
{
if(menuObj.options[i].value != '#')
{
window.location = menuObj.options[i].value;
}
}
}
</script>