Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<div id="dialog" title="Change">
    <input type='text' title='Tags' id='tags'  placeholder="Enter Name"/>
</div>
 
.ui-dialog {
  overflow:visible;
}
 
$(document).ready(function() {
   $("#dialog").dialog({ 
        autoOpen: true,
        position: 'center',
        resizable: false,
        draggable: false,
        height: 100
    });
    
    var aTags = ["ask","always", "all", "alright", "one", "foo", "blackberry", "tweet","force9", "westerners", "sport", "abc", "abcd", "abcde"];
    $( "#tags" ).autocomplete({
        source: aTags
    });
    
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dodoflyingpro
0viewers