Guest User

Untitled

a guest
Jan 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. voting : function () {
  2. var regions = $("#regions li.region");
  3. var form = $("#submit-city-form")
  4. form.submit(function (e) {
  5. e.preventDefault();
  6. $.ajax({
  7. data: form.serialize()
  8. ,dataType: "json"
  9. ,type: "POST"
  10. ,url: form.attr("action")
  11. ,complete: function (req) {
  12. console.log(req);
  13. }
  14. });
  15. });
  16. },
Add Comment
Please, Sign In to add comment