Basically what I\'m looking for is the ability to hide options from the dropdown of select items. So, technically they would still be options, but you just wouldn\'t be able
If somebody wants a another option using jquery data tags this woks for me:
$('.select2 option').each(function(){ if ($(this).data('condition') != 'true' ) { $(this).wrap('') } else { $(this).unwrap('div') } })