Hi,
I have tried all kinds of things, but no matter how I try to hide some fields, they show up when the form gets submitted.
$('.Submit').on('click', function () {
$(".tip").hide();
});
function hideobjects() {
var element = document.getElementById("q18");
element.classList.add("hidden");
}
$("#Field18").css('display', 'none');
document.getElementById("q18").style.visibility = "hidden";
document.getElementById("q18").style.display= "none";
Nothing seems to hold, it will hide it within the form but once I submit it is back to visible.
This particular field is a normal, single line field. I also want to hide an HTML using class or id.
Any suggestions?