google auto complete not show on modal

Solutions on MaxInterview for google auto complete not show on modal by the best coders in the world

showing results for - "google auto complete not show on modal"
Liya
09 Jan 2019
1<script>
2    $(function () {
3        var input = document.getElementById("keyword");
4        var autocomplete = new google.maps.places.Autocomplete(input);
5
6        $('#my-modal').modal('show');
7
8    });
9
10</script>
11<style>
12    .pac-container {
13        z-index: 10000 !important;
14    }
15</style>
16