Join Our Newsletter
jQuery(document).ready(function ($) {
$.get(“https://mensshedscanada.member365.ca/public/listbuilder/getOptin/1/218d962626069cc5104ac664fbb0d037ade77c4f”, function (data) {
$(“#optin_218d962626069cc5104ac664fbb0d037ade77c4f”).html(data);
setTimeout(function () {
const $form = $(“#optin_218d962626069cc5104ac664fbb0d037ade77c4f”);
// Style text and email inputs
$form.find(“input[type=’text’], input[type=’email’]”).css({
width: “100%”,
padding: “0.5rem”,
margin: “0.5rem 0”,
boxSizing: “border-box”,
borderRadius: “6px”,
border: “1px solid #ccc”
});
// Style select elements
$form.find(“select”).css({
width: “100%”,
padding: “0.7rem”,
margin: “0.5rem 0”,
boxSizing: “border-box”,
borderRadius: “6px”,
border: “1px solid #ccc”,
backgroundColor: “#fff”
});
// Style Subscribe button (input[type=button][value=’Subscribe’])
$form.find(“input[type=’button’][value=’Subscribe’]”).css({
width: “100%”,
});
}, 500);
});
});
