I'm trying to adjust this code someone gave me so that the ADDRESS (the very first label) is hidden. See below. The second line I added myself, but it does not work. Everything else does. I've tried CSS, but I think the JavaScript overrides it. Can you help?
$(document).ready (function () {
$("#Field90_Label").siblings().css('display', 'none');
$("#Field90_DSG5").parent().children().val("Canada");
$("#Field90_DSG5").parent().children().css('display', 'none');
})
$(document).ready (function () {
$("#Field90_DSG4").siblings().text('Postal Code');
})
$(document).ready (function () {
$("#Field90_DSG3").siblings().text('Province');
})
$(document).ready (function () {
$("#Field90_DSG1").siblings().text('Mailing Address');
$(".Country").parent().children().css('display', 'Mailing Address');
})
It's that very first label that I want removed: