Guest User

Untitled

a guest
May 26th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $('#status').change(function() {
  4. if ($('#status').attr('value')=='Complete') {
  5. $('#updatelabel,#update').hide();
  6. }
  7. else
  8. {
  9. $('#updatelabel,#update').show();
  10. }
  11. });
  12. });
  13.  
  14. </script>
Add Comment
Please, Sign In to add comment