Данная функция не работает из файла func.js подгруженного в head страницы, но прекрасно работает если ее вставить в страницу. В чем проблема?
$(function ajaxform(result_id, form_id) {
$.ajax({
url: "./static/savesettings.php",
type: "POST",
dataType: "html",
data: jQuery("#"+form_id).serialize(),
success: function(response) {
document.getElementById(result_id).innerHTML = response;
setTimeout("$('.err').fadeOut('slow');", 1000);},
error: function(response) {
document.getElementById(result_id).innerHTML = "<div class=\"err\" style=\"color:#dc4747 !important;\">Неизвестная ошибка при сохранении</div>";
setTimeout("$('.err').fadeOut('slow');", 1000);}
});
});