Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $( document ).ready(function() {
- $("#name").change(
- function(){
- var name = document.getElementById("name").value;
- if (name.length == 0){
- alert ("Нужно заполнить имя");
- }else{
- sendAjaxForm('result_form', 'ajax_form', '/action_ajax_form.php');
- }
- return false;
- }
- );
- });
- function sendAjaxForm(result_form, ajax_form, url) {
- var name = "test";
- $.ajax({
- url: "action_ajax_form.php", //url страницы (action_ajax_form.php)
- type: "POST", //метод отправки
- dataType: "html", //формат данных
- data: name, // Сеарилизуем объект
- success: function(response) { //Данные отправлены успешно
- alert ("данные отправлены");
- },
- error: function(response) { // Данные не отправлены
- $('#result_form').html('Ошибка. Данные не отправлены.');
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment