Skip to content

Instantly share code, notes, and snippets.

@markedagain
Created August 20, 2015 18:34
Show Gist options
  • Save markedagain/ffc421a45e5234e8280d to your computer and use it in GitHub Desktop.
Save markedagain/ffc421a45e5234e8280d to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$("#issue-form").submit(function(e){
if ($("#issue_status_id option[value='11']").attr('selected')){
if ($('#issue_tags ul li').length == 1){
alert('no tags');
return false
}
}
this.submit();
return true;
});});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment