Opened 9 years ago
Closed 9 years ago
#9503 closed bug (invalid)
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=...
Change History (2)
comment:1 Changed 9 years ago by
Owner: | set to BobvH |
---|---|
Status: | new → pending |
comment:2 Changed 9 years ago by
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/.