Search and Top Navigation
#9503 closed bug (invalid)
Opened August 19, 2013 06:52PM UTC
Closed September 04, 2013 08:49AM UTC
External source for autocomplete doesn't allow get elements in URL
Reported by: | BobvH | Owned by: | BobvH |
---|---|---|---|
Priority: | minor | Milestone: | none |
Component: | ui.autocomplete | Version: | 1.10.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When setting the source for autocomplete as an external URL, adding get elements is not possible.
For example:
This works:
$( "#id" ).autocomplete({source: "file.php"});
This doesn't work:
$( "#id" ).autocomplete({source: "file.php?a=1"});
I think the reason for that is that it results into using this url: file.php?a=1?term=... in stead of file.php?a=1&term=...
Attachments (0)
Change History (2)
Changed August 20, 2013 01:11PM UTC by comment:1
owner: | → BobvH |
---|---|
status: | new → pending |
Changed September 04, 2013 08:49AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Hi BobvH,
Thanks for taking the time to contribute to the jQuery UI project. Can you please provide a reduced test case that shows this behavior?
It's working fine to me - http://jsfiddle.net/tj_vantoll/GkzkN/.