Skip to content

Instantly share code, notes, and snippets.

@onefriendaday
Created July 28, 2014 12:54
Show Gist options
  • Save onefriendaday/8c38732f10c8f7a2d8d9 to your computer and use it in GitHub Desktop.
Save onefriendaday/8c38732f10c8f7a2d8d9 to your computer and use it in GitHub Desktop.
Verify if all options are selected in looks
<script type="text/javascript">
$(document).ready(function(){
$('#look-form').submit(function(e){
var form = e;
var prevented = false;
$('.product-id:checked').each(function(){
if($(this).prev().val() == '' && !prevented){
form.preventDefault();
alert('Por favor selecione todas as opções');
prevented = true;
}
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment