Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Only jquery autocomplete download

I want to download jquery autocomplete plugin, but it doesn't let me download only that file but with jquery core, jquery position, widget etc. scripts. But I don't want all these files as I already have them added in my project and working fine, so I don't want to break any current working logic.

When I tried putting all the script came with autocomplete(including core.js), it worked but then my datepicker stopped working.

I also tried picking and adding only autocomplete script part from the full script but it didn't work, may be because I am using jquery 1.7.2 and I found autocomplete 1.10.2.

Is there any way to get only autocomplete plugin or any similar plugin that can work something like we get other plugins from outside authors?

Basically my requirement is not exactly of autocomplete, what I want is to have a text box that on focus show the list of options to choose, something like dropdownlist options but also lets us put our own value and don't show the dropdown list arrow. I made this all working with the help of autocomplete plugin, the problem came when I tried adding it in my project.

Basically this requirement

enter image description here

Any idea what I can do?

like image 901
Pawan Nogariya Avatar asked Mar 21 '13 03:03

Pawan Nogariya


People also ask

What is autocomplete in jqueryui?

With an autocomplete widget, the jQueryUI facilitates the users by giving a list of suggestions to type in a text box. It is like a control. To present only those that match what the user is typing into control, it acts a lot like a <select> dropdown but with filtered choices.

What is autocomplete AutoCAD?

Autocomplete. The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try. The datasource is a simple JavaScript array, provided to the widget using the source-option.

What is the DataSource of the autocomplete widget?

The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try. The datasource is a simple JavaScript array, provided to the widget using the source-option. Want to learn more about the autocomplete widget?

What are compressed and uncompressed jQuery files?

Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. You can also download a sourcemap file for use when debugging with a compressed file.


1 Answers

You can go to the All jQuery UI Downloads page and get the file with the source.

Then, in the ui folder, you will see separate files for each module, including jquery.ui.autocomplete.js.

I do not know how your files are organized in your project, but be aware that the autocomplete module needs core, widget, position and menu in order to work. The first two must be loaded before autocomplete.

Your code should look like this:

<script type="text/javascript" src="vendor/jquery-ui/js/jquery.ui.core.js"></script>
<script type="text/javascript" src="vendor/jquery-ui/js/jquery.ui.widget.js"></script>
<script type="text/javascript" src="vendor/jquery-ui/js/jquery.ui.position.js"></script>
<script type="text/javascript" src="vendor/jquery-ui/js/jquery.ui.menu.js"></script>
<script type="text/javascript" src="vendor/jquery-ui/js/jquery.ui.autocomplete.js"></script>

Hope it helps!

like image 177
Andreas Schwarz Avatar answered Sep 19 '22 10:09

Andreas Schwarz