home > Multi Select with search

Simple useage. Pass in the name you are instantiating the object as... the target div and the XML APIs for the full list and any previously selected list. Done! As long as you name each instantiation differently you can add as multi selectors as you like to one page.
<form method="post" action="show_results.php">
<div id="multi_selector"></div>
<input type="submit" />
</form>

<script type="text/javascript">
    var objectName = new MultiSelect(string objectName, string divID, 
                              string listTitle, string listAPI, 
                              string selectedTitle, string selectedAPI); 
                 
    example:                 
                              
    var oMultiSelect = new MultiSelect('oMultiSelect', 'multi_selector', 
                                      'Contact List', 'list.php', 
                                      'Selected List', 'selected.php');
</script>