phpvira

main.js

Oct 4th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3.  
  4. $('#posalji').on('click', function(e){
  5.  
  6. var ime = $('#ime').val(),
  7. sifra = $('#sifra').val(),
  8. plata = $("#plata").val(),
  9. radno_mesto = $("#radno_mesto").val();
  10.  
  11.  
  12. if(ime == '' || sifra == '' || plata == '' || radno_mesto =='')
  13. {
  14. e.preventDefault();
  15. alert('Niste uneli sve podatke');
  16. }
  17.  
  18.  
  19. });
  20.  
  21. });
Add Comment
Please, Sign In to add comment