mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
32 lines
737 B
HTML
32 lines
737 B
HTML
|
<script type="text/javascript">
|
||
|
|
||
|
var autocomplete_data = '["book","movie","music","sports","skating","swim"]';
|
||
|
|
||
|
var model = {
|
||
|
|
||
|
renderAt: '#containerDemo',
|
||
|
|
||
|
title: 'Autocomplete Demos',
|
||
|
|
||
|
demos: [
|
||
|
|
||
|
{
|
||
|
title: 'Simple autocomplete',
|
||
|
desc: 'With few lines of code you could build a autocomplete. You can try more options on the fly! ',
|
||
|
html: '<input id="autocomplete" type="text" /> (Try type <em>m</em> or <em>s</em>)',
|
||
|
destroy: '$("#autocomplete").autocomplete("destroy");',
|
||
|
options: [
|
||
|
{ desc: 'Attach a autocomplete', source: '$("#autocomplete").autocomplete({data:'+autocomplete_data+'});' }
|
||
|
]
|
||
|
}
|
||
|
|
||
|
]
|
||
|
};
|
||
|
|
||
|
$(function(){
|
||
|
|
||
|
uiRenderDemo(model);
|
||
|
|
||
|
});
|
||
|
|
||
|
</script>
|