Auto Complete not working
Dear Sir
Pls refer
I am unable to search and i checked debugg console no error is displayed
my coding
- <script type="text/javascript">
- $(document).ready(function() {
- $('#searchid').change(function(){
- //fire your ajax call
- var id = $('#searchid').val();
- window.open('https://adventchembio.com/msds.php?id=&&product='+id);
- });
-
- $(function() {
- $("#searchname").autocomplete({
- source: "marathesearchfill.php",
- minLength: 2,
- select: function(event, ui) {
- $('#searchid').val(ui.item.recid)
- .trigger('change');;
- },
-
- //html: true,
-
- open: function(event, ui) {
- $(".ui-autocomplete").css("z-index", 999999999999);
- }
- });
-
-
- });
- });
- </script>
I checked
for which i want list of names
it show list of names properly
i am trying lot of ways but couldn't resolve this
Pls pls help
Thanksin advance