Я бы хотел, чтобы содержимое #contact-title
изменилось после успешной отправки формы. Если кто-то может помочь, буду очень признателен.
<p id="contact-title">Feel free to send us a message and we’ll get back to you as soon as we can.</p>
jQuery(document).ready(function($) {
$(document).on('frmFormComplete', function(event, form, response) {
var title = $('#contact-title').text('test');
});
});