1
I want to use a input
to store several emails but I’m having difficulties to implement this in practice.
when placing an email on input
the user type enter, to validate the email, if valid add the character ;
How to do this action with jQuery?
$(document).ready(function() {
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form id="form">
<input type="text" class="email" id="email">
</form>