Advertisement
zumixosan

BOB

Oct 31st, 2019
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.67 KB | None | 0 0
  1. $(document).ready(function(){
  2.     $("select#src_fld5").change(function(){
  3.         var selectedOption = $(this).children("option:selected").val();
  4.         alert("You have selected the country - " + selectedOption);
  5.        
  6.         if(selectedOption == 'nominal' || selectedOption == 'book_reff_id'){
  7.                     alert("masuk kondisi");
  8.                          $("#src_val_start5").keypress(function(e){
  9.                                  if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
  10.         //display error messag
  11.                 jQuery('#src_submit').attr('disabled', true)
  12.     }else{
  13.    
  14.     jQuery('#src_submit').attr('disabled', false)
  15.     }
  16.               });  
  17.         }
  18.     });
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement