/ Published in: jQuery
validar limite de elementos seleccionados en select multiple
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('#selectRoles').change(function(event) { if ($(this).val().length > 5) { alert("Solo puede seleccionar 5 roles a la vez"); $(this).val(ultimo_valido); }else{ ultimo_valido = $(this).val(); } });