Jquery in magento2
I show up popup when i click the newsletter.
I have bind popup html in js like
$(this.options.popupWrapper).html('');
popupContent +='<form id="subscriber-form" class="form newsletter-popup">' + staticBlock + '<div class="newsletter-wrapper">';
popupContent +='<fieldset class="fieldset"><div class="newsletter-signin-form mgb20"><div class="field form-group required"><label class="control-label" for="customerName">Name</label><div class="control">';
popupContent +='<input type="text" class="input-text input customerName" aria-label="Customer Name" name="customerName" id="customerName" data-validate="{'required-name':true}"/><i class="bar"></i><div for="customerName" generated="true" class="mage-error" id="customerName-error"></div></div></div><div class="field form-group required">';
popupContent +='<label class="control-label" for="customerEmail">Email</label><div class="control control"><input type="email" class="input-text input customerEmail" aria-label="Customer Email" name="customerEmail" id="customerEmail" data-validate="{'validate-email-id':true}"/><i class="bar"></i><div class="email validate-message mage-error" generated="true"></div></div></div>';
popupContent +='<div class="field form-group subscribe-mobile"><label class="control-label" for="customerMobile">Mobile number</label><div class="control mobile-control"><input type="text" maxlength="10" class="input-text input customerMobile mobile-number-optional" name="customerMobile" id="customerMobile" aria-label="Customer Mobile" data-validate="{'mobile-number-optional':true}" />';
popupContent +='<i class="bar"></i><div class="mobile validate-message mage-error"></div></div></div></div>'
popupContent +='<input type="hidden" id="s1" name="s1" value="' + s1 + '"/><input type="hidden" id="s2" name="s2" value="' + s2 + '" /><input type="hidden" id="c" name="c" value="' + c + '"/></fieldset>';
popupContent +='<div><button class="newsletter-button a-primary-btn ripple" name="submit" type="submit"><span>Grab your coupon code</span></button></div>';
popupContent +='</div></form>';
$(this.options.popupWrapper).append(popupContent);
I want to optimise this code in jquery. If any other way to do this (Only html bind in jquery without using template) .
Thanks.
magento2.2 jquery php-7.2
add a comment |
I show up popup when i click the newsletter.
I have bind popup html in js like
$(this.options.popupWrapper).html('');
popupContent +='<form id="subscriber-form" class="form newsletter-popup">' + staticBlock + '<div class="newsletter-wrapper">';
popupContent +='<fieldset class="fieldset"><div class="newsletter-signin-form mgb20"><div class="field form-group required"><label class="control-label" for="customerName">Name</label><div class="control">';
popupContent +='<input type="text" class="input-text input customerName" aria-label="Customer Name" name="customerName" id="customerName" data-validate="{'required-name':true}"/><i class="bar"></i><div for="customerName" generated="true" class="mage-error" id="customerName-error"></div></div></div><div class="field form-group required">';
popupContent +='<label class="control-label" for="customerEmail">Email</label><div class="control control"><input type="email" class="input-text input customerEmail" aria-label="Customer Email" name="customerEmail" id="customerEmail" data-validate="{'validate-email-id':true}"/><i class="bar"></i><div class="email validate-message mage-error" generated="true"></div></div></div>';
popupContent +='<div class="field form-group subscribe-mobile"><label class="control-label" for="customerMobile">Mobile number</label><div class="control mobile-control"><input type="text" maxlength="10" class="input-text input customerMobile mobile-number-optional" name="customerMobile" id="customerMobile" aria-label="Customer Mobile" data-validate="{'mobile-number-optional':true}" />';
popupContent +='<i class="bar"></i><div class="mobile validate-message mage-error"></div></div></div></div>'
popupContent +='<input type="hidden" id="s1" name="s1" value="' + s1 + '"/><input type="hidden" id="s2" name="s2" value="' + s2 + '" /><input type="hidden" id="c" name="c" value="' + c + '"/></fieldset>';
popupContent +='<div><button class="newsletter-button a-primary-btn ripple" name="submit" type="submit"><span>Grab your coupon code</span></button></div>';
popupContent +='</div></form>';
$(this.options.popupWrapper).append(popupContent);
I want to optimise this code in jquery. If any other way to do this (Only html bind in jquery without using template) .
Thanks.
magento2.2 jquery php-7.2
add a comment |
I show up popup when i click the newsletter.
I have bind popup html in js like
$(this.options.popupWrapper).html('');
popupContent +='<form id="subscriber-form" class="form newsletter-popup">' + staticBlock + '<div class="newsletter-wrapper">';
popupContent +='<fieldset class="fieldset"><div class="newsletter-signin-form mgb20"><div class="field form-group required"><label class="control-label" for="customerName">Name</label><div class="control">';
popupContent +='<input type="text" class="input-text input customerName" aria-label="Customer Name" name="customerName" id="customerName" data-validate="{'required-name':true}"/><i class="bar"></i><div for="customerName" generated="true" class="mage-error" id="customerName-error"></div></div></div><div class="field form-group required">';
popupContent +='<label class="control-label" for="customerEmail">Email</label><div class="control control"><input type="email" class="input-text input customerEmail" aria-label="Customer Email" name="customerEmail" id="customerEmail" data-validate="{'validate-email-id':true}"/><i class="bar"></i><div class="email validate-message mage-error" generated="true"></div></div></div>';
popupContent +='<div class="field form-group subscribe-mobile"><label class="control-label" for="customerMobile">Mobile number</label><div class="control mobile-control"><input type="text" maxlength="10" class="input-text input customerMobile mobile-number-optional" name="customerMobile" id="customerMobile" aria-label="Customer Mobile" data-validate="{'mobile-number-optional':true}" />';
popupContent +='<i class="bar"></i><div class="mobile validate-message mage-error"></div></div></div></div>'
popupContent +='<input type="hidden" id="s1" name="s1" value="' + s1 + '"/><input type="hidden" id="s2" name="s2" value="' + s2 + '" /><input type="hidden" id="c" name="c" value="' + c + '"/></fieldset>';
popupContent +='<div><button class="newsletter-button a-primary-btn ripple" name="submit" type="submit"><span>Grab your coupon code</span></button></div>';
popupContent +='</div></form>';
$(this.options.popupWrapper).append(popupContent);
I want to optimise this code in jquery. If any other way to do this (Only html bind in jquery without using template) .
Thanks.
magento2.2 jquery php-7.2
I show up popup when i click the newsletter.
I have bind popup html in js like
$(this.options.popupWrapper).html('');
popupContent +='<form id="subscriber-form" class="form newsletter-popup">' + staticBlock + '<div class="newsletter-wrapper">';
popupContent +='<fieldset class="fieldset"><div class="newsletter-signin-form mgb20"><div class="field form-group required"><label class="control-label" for="customerName">Name</label><div class="control">';
popupContent +='<input type="text" class="input-text input customerName" aria-label="Customer Name" name="customerName" id="customerName" data-validate="{'required-name':true}"/><i class="bar"></i><div for="customerName" generated="true" class="mage-error" id="customerName-error"></div></div></div><div class="field form-group required">';
popupContent +='<label class="control-label" for="customerEmail">Email</label><div class="control control"><input type="email" class="input-text input customerEmail" aria-label="Customer Email" name="customerEmail" id="customerEmail" data-validate="{'validate-email-id':true}"/><i class="bar"></i><div class="email validate-message mage-error" generated="true"></div></div></div>';
popupContent +='<div class="field form-group subscribe-mobile"><label class="control-label" for="customerMobile">Mobile number</label><div class="control mobile-control"><input type="text" maxlength="10" class="input-text input customerMobile mobile-number-optional" name="customerMobile" id="customerMobile" aria-label="Customer Mobile" data-validate="{'mobile-number-optional':true}" />';
popupContent +='<i class="bar"></i><div class="mobile validate-message mage-error"></div></div></div></div>'
popupContent +='<input type="hidden" id="s1" name="s1" value="' + s1 + '"/><input type="hidden" id="s2" name="s2" value="' + s2 + '" /><input type="hidden" id="c" name="c" value="' + c + '"/></fieldset>';
popupContent +='<div><button class="newsletter-button a-primary-btn ripple" name="submit" type="submit"><span>Grab your coupon code</span></button></div>';
popupContent +='</div></form>';
$(this.options.popupWrapper).append(popupContent);
I want to optimise this code in jquery. If any other way to do this (Only html bind in jquery without using template) .
Thanks.
magento2.2 jquery php-7.2
magento2.2 jquery php-7.2
asked 4 mins ago
Mano MMano M
804217
804217
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f260485%2fjquery-in-magento2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f260485%2fjquery-in-magento2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown