Guest User

Untitled

a guest
Feb 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(function () {
  3. $("#first, #second, #persons, #table, #date, #time, #number, #email").bind("change keyup",
  4. function () {
  5. if ($("#first").attr('checked') == true && $("#second").val() != "")
  6. $(this).closest("form").find(":submit").removeAttr("disabled");
  7. else
  8. $(this).closest("form").find(":submit").attr("disabled", "disabled");
  9. });
  10. });
Add Comment
Please, Sign In to add comment