I am building up angular 6 application, in which i am in the need to make a multi select dropdown using <input> text box without using <select>.
Html:
<form>
  Select User: <input type="text" name="user" [value]="users"><br>
  <button type="submit"> Submit </button>
</form>
Ts:
import { Component } from '@angular/core';
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
    users = ['First User', 'Second User', 'Third User', 'Fourth User'];
}
I also need to do it using Pure Javascript, Tpescript, and also Without third party or jquery.
Also recommended not to use html datalist.
I have a lot of search for it but couldn't find a proper solution for it. Kindly help me to achieve the result.
Stackblitz: https://stackblitz.com/edit/angular-v7kmbq


