У меня сейчас проблема, я просмотрел StackOverflow, w3 c и другие варианты поиска. Я перепробовал все варианты javascript, jquery и даже php, которые я могу найти и не могу получить эту форму для сброса после отправки. Прикрепленный ниже код, пожалуйста, помогите!
Функциональность формы:
$(function()
{
function after_form_submitted(data)
{
if(data.result == 'success')
{
$('form#car-inquiry').siblings('#form-welcome').hide();
$('form#car-inquiry').hide();
$('#success_message').show();
$('#error_message').hide();
$('#car-inquiry')[0].reset();
Функция закрытия и открытия лайтбокса:
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
document.getElementById('overlay').style.display = "none";
document.getElementById('#car-inquiry').reset();
container.fadeOut();
}
});
/* close form button*/
function closeForm() {
document.getElementById("contact-car-form").style.display = "none";
document.getElementById('#car-inquiry').reset();
document.getElementById('overlay').style.display = "none";
}
Дайте мне знать, если я могу предоставить что-либо еще из использовать. Спасибо!