jQuery(document).ready(function($){ if ( jQuery('body').hasClass('page-id-333') ){ jQuery('
').insertAfter(jQuery('#text-3')); } jQuery(document).on('click', '#show-testi-form', function(){ jQuery('.testi-form-holder').show(); jQuery(this).attr('id', 'submit-testi-form'); jQuery(document).on('click', '#submit-testi-form', function(){ var count = 0; var testi_name = jQuery('#testi-name').val(); var testi_message = jQuery('#testi-message').val(); var data_arr = []; if ( jQuery.trim(testi_name).length == 0 ) { jQuery('#testi-name-notice').html('Name is required.'); count++; } else { data_arr[0] = testi_name; } if ( jQuery.trim(testi_message).length == 0 ) { jQuery('#testi-message-notice').html('Testimonial is required.'); count++; } else { data_arr[1] = testi_message; } if ( count > 0 ) { jQuery('.testi-success').html(''); return false; } else { /*data = data_arr.join();*/ jQuery.post( 'http://www.kelleyhomesales.com//wp-admin/admin-ajax.php', { 'action': 'add_testimonial', 'data': data_arr }, function(response){ console.log(response); } ); jQuery('.testi-success').show(); jQuery('#testi-name, #testi-message').val(''); jQuery('.testi-notice').html(''); jQuery('.testi-success').html('Testimonial is submitted for approval. Thanks!'); } }); });});