Problem with Validation plugin using ajax

Problem with Validation plugin using ajax

Hi, I have a problem
when I submit form first time, everything is ok, and when I try to submit it once more, ajax is not working, and native form submit starting.
Here my code
js:
  1. $(document).ready(function(){
  2. $('#contacts_admin').validate(
  3. {
  4. rules:{
  5. "phone":{
  6. required:true
  7. },
  8. "email":{
  9. required:true,
  10. email:true
  11. },
  12. "slogan":{
  13. required:true
  14. },
  15. "adress":{
  16. required:true
  17. },
  18. "adress_bottom":{
  19. required:true
  20. },
  21. "worktime":{
  22. required:true
  23. },
  24. "map":{
  25. required:true
  26. }
  27. },

  28. messages:{
  29. "phone":{
  30. required:"Введите телефон"
  31. },
  32. "email":{
  33. required:"E-mail обязателен",
  34. email:"Пожалуйста, введите верный адрес электронной почты"
  35. },
  36. "slogan":{
  37. required:"Введите слоган в верхнем меню"
  38. },
  39. "adress":{
  40. required:"Введите адрес для самовывоза"
  41. },
  42. "adress_bottom":{
  43. required:"Введите адрес внизу страницы"
  44. },
  45. "worktime":{
  46. required:"Введите время работы"
  47. },
  48. "map":{
  49. required:"Вставьте код карты"
  50. }
  51. },
  52. submitHandler: function(form){
  53. $(form).ajaxSubmit({
  54. target: '#message', 
  55. success: function(data) {
  56. clearForm: false,
  57. $('#message').fadeIn(),
  58. $('#message').html(data),
  59. setTimeout(function(){
  60. $('#message').fadeOut('slow')
  61.                          }, 2000);  
  62. });
  63. return false; 
  64. }
  65.             });

  66. });
html:
  1. <form  id="contacts_admin" method="post" action="/admin/manage/contacts/update">
  2. <label class="col-sm-12 col-md-4">Телефон:</label>
  3.          <div class="col-sm-12 col-md-8">
  4.  <input class="form-control" type="text" name="phone" value="info">
  5.          </div>
  6.          <label class="col-sm-12 col-md-4">E-mail:</label>
  7.          <div class="col-sm-12 col-md-8">
  8. <input class="form-control" type="email" name="email" value="info">
  9.          </div>
  10.          <label class="col-sm-12 col-md-4">Слоган в верхнем меню:</label>
  11. <div class="col-sm-12 col-md-8">
  12.           <textarea class="form-control" name="slogan">info</textarea>
  13.          </div>
  14. label class="col-sm-12 col-md-4">Адрес для самовывоза:</label>
  15. <div class="col-sm-12 col-md-8">
  16.         <textarea class="form-control" name="adress">info</textarea>
  17.          </div>
  18.          <label class="col-sm-12 col-md-4">Адрес внизу страницы:</label>
  19. <div class="col-sm-12 col-md-8">
  20.          <textarea class="form-control" name="adress_bottom">info</textarea>
  21.          </div>
  22.          <label class="col-sm-12 col-md-4">Время работы:</label>
  23.        <div class="col-sm-12 col-md-8">
  24.           <textarea class="form-control" name="worktime">info</textarea>
  25.           </div>
  26.           <label class="col-sm-12 col-md-4">Карта (код):</label>
  27. <div class="col-sm-12 col-md-8">
  28.            <textarea class="form-control" name="map">info</textarea>
  29.          </div>
  30.            
  31.          <div class="col-sm-12 col-md-8 col-sm-offset-4">
  32. <button id="contacts_admin_submit" class="btn btn-default">Сохранить</button>
  33. <button type="reset" class="btn btn-default">Отмена</button>
  34.                 </div>
  35. </form>