Hello, Thanks for this awesome extension. i would like to add a feature so that whenever i click a link (e. http:///www.mysite.com/incoming#option1 ) i already have the dropdown option1 selected... is it possible to do something like that? and is so how can i do it?
So far i have tried
<script type="text/javascript">
var val = window.location.hash.replace('#', '');
var opts = document.getElementByid('dropdown').getElementsByTagName('option');
for(var i=0; i<opts.length; i++) {
if(opts[i].value == val) {
opts[i].selected = true;
break;
}
}
--></script>
But since the select element does not have an ID, it does not work. and i find my self unable to add an id to it.
Thanks vey much in advance.