HTML-код:
Я повторяю это содержимое в php-файле. В результате я получаю только «Обратная связь». Оставшаяся часть не отображает HTML-форму
<div > Contact Us
<form name="profile" action="" method="post">
Name : <input type="text" name="fullname" id="fullname" />
Email : <input type="text" name="email" id="email" />
Mobile : <input type="text" name="mobile" id="mobile" />
</form>
</div>
Ответ кода Jquery:
$.post("contact_us.php",{ user_id:$('#user_id').val(),typ:'contact_us' },
function(data) {
$('#contact_us').html(data);
});
В contact_us id не пишет форму обратной связи, пожалуйста, кто-нибудь, помогите мне