close.lite.html.hook.php 220 B

123456789
  1. <script>
  2. $('#closedReason option').each(function()
  3. {
  4. if($(this).val() != '' && $(this).val() != 'done' && $(this).val() != 'duplicate' && $(this).val() != 'cancel')
  5. {
  6. $(this).remove();
  7. }
  8. })
  9. </script>