1
You can add a tag with the user clicking enter E on space? By default of materialize chips it adds only if you click enter...
I found nothing on, the documentation of the materialize is very bad.
For example, if you are separated by spaces and click on enter it looks like this:
The right thing would be:
$('.chips').chips();
body {
padding: 30px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<div class="chips"></div>
@Andersoncarloswoss put images demonstrating.
– user134546