I have a simple code, where I am adding intl-tel-input to all tel input fields. My problem is when I select another country, it is showing the country codes like the image shared.
var iti = $('input[type=tel]').intlTelInput({
preferredCountries: false,
separateDialCode: true,
autoPlaceholder: "aggressive"
})
I had encountered this problem recently. My mistake was initializing same input the second time. Check if you have same situation as mine.