removed textarea selector

This commit is contained in:
Michael Wain 2024-03-13 14:53:26 +03:00
parent bb3d92fd36
commit 2fd2e4cfdb

View File

@ -23,12 +23,6 @@ function grab_form() {
} }
arr.push(query); arr.push(query);
}); });
$("form#entryForm :textarea").each(function() {
var input = $(this);
var vv = str_toHex(input.val());
let query = input.attr('id') + "=" + vv;
arr.push(query);
});
arr.push("section=" + new URL(window.location.href).searchParams.get("section")); arr.push("section=" + new URL(window.location.href).searchParams.get("section"));
return arr.join("&"); return arr.join("&");
} }