Guest User

Untitled

a guest
Nov 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. $("#wTextBoxAutoComplete_Risicoklasse1").blur(function () {
  2. if ($("#wTextBoxAutoComplete_Risicoklasse1").val() === '4') {
  3. // do something
  4. }
  5. else {
  6. // do something else }
  7.  
  8. });
  9.  
  10. $("#wTextBoxAutoComplete_Risicoklasse1").focusout(function () {
  11. if ($("#wTextBoxAutoComplete_Risicoklasse1").val() === '4') {
  12. // do something
  13. }
  14. else {
  15. // do something else
  16. }
  17.  
  18. });
Add Comment
Please, Sign In to add comment