Magento 2: Uncaught Error: cannot call methods on modal prior to initialization; attempted to call method...
Are there incongruent pythagorean triangles with the same perimeter and same area?
Can you compress metal and what would be the consequences?
Delete all lines which don't have n characters before delimiter
How to notate time signature switching consistently every measure
Why do UK politicians seemingly ignore opinion polls on Brexit?
What is the meaning of the verb "bear" in this context?
Can one be advised by a professor who is very far away?
FPGA - DIY Programming
Why can Shazam fly?
What does ひと匙 mean in this manga and has it been used colloquially?
Interpreting the 2019 New York Reproductive Health Act?
Aging parents with no investments
Is this app Icon Browser Safe/Legit?
How to answer pointed "are you quitting" questioning when I don't want them to suspect
Why hard-Brexiteers don't insist on a hard border to prevent illegal immigration after Brexit?
How to support a colleague who finds meetings extremely tiring?
Feature engineering suggestion required
For what reasons would an animal species NOT cross a *horizontal* land bridge?
Did 3000BC Egyptians use meteoric iron weapons?
Is a "Democratic" Oligarchy-Style System Possible?
"as much details as you can remember"
Protecting Dualbooting Windows from dangerous code (like rm -rf)
If a Druid sees an animal’s corpse, can they Wild Shape into that animal?
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
Magento 2: Uncaught Error: cannot call methods on modal prior to initialization; attempted to call method 'show' when calling bootstrap modal
The 2019 Stack Overflow Developer Survey Results Are InMagento 2 : Fatal error: Uncaught Error: Call to a member function dispatch() | Store InformationCannot call methods on modal prior to initialization; attempted to call method 'openModal'magento 2 Error: cannot call methods on modal prior to initialization; attempted to call method 'openModal'magento 2 Error: cannot call methods on priceBox prior to initialization; attempted to call method 'option'Magento2 does n't get the order collection from OrderCollectionFactoryMagento 2 - Cant update categories programmatically Flat::validate()addAttributeToSelect Call to undefined method M2Magento 2 Checkout Error Uncaught TypeError: Cannot read property 'getCacheKey' of nullProduct admin edit issue in magento 2Magento 2 Fatal error: Uncaught Error: Call to undefined method MagentoFrameworkSessionSaveHandlerNative::write()
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am getting error when I am calling modal like this
setTimeout(function() { $('#site-pop-up').modal('show'); }, 2000);
Error in console:
Uncaught Error: cannot call methods on modal prior to initialization; attempted to call method 'show'
Anyone have solution for this?
Thanks
magento2 modal-popup
add a comment |
I am getting error when I am calling modal like this
setTimeout(function() { $('#site-pop-up').modal('show'); }, 2000);
Error in console:
Uncaught Error: cannot call methods on modal prior to initialization; attempted to call method 'show'
Anyone have solution for this?
Thanks
magento2 modal-popup
add a comment |
I am getting error when I am calling modal like this
setTimeout(function() { $('#site-pop-up').modal('show'); }, 2000);
Error in console:
Uncaught Error: cannot call methods on modal prior to initialization; attempted to call method 'show'
Anyone have solution for this?
Thanks
magento2 modal-popup
I am getting error when I am calling modal like this
setTimeout(function() { $('#site-pop-up').modal('show'); }, 2000);
Error in console:
Uncaught Error: cannot call methods on modal prior to initialization; attempted to call method 'show'
Anyone have solution for this?
Thanks
magento2 modal-popup
magento2 modal-popup
edited 44 secs ago
Shoaib Munir
2,4072929
2,4072929
asked 3 mins ago
ShiwaniShiwani
245
245
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Add your code in require
so that it will execute with jquery and modal is ready
require([
'jquery',
'Magento_Ui/js/modal/modal'
], function($){
setTimeout(function() {
jQuery('#site-pop-up').modal('show');
}, 2000);
});
add a comment |
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%2f269644%2fmagento-2-uncaught-error-cannot-call-methods-on-modal-prior-to-initialization%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Add your code in require
so that it will execute with jquery and modal is ready
require([
'jquery',
'Magento_Ui/js/modal/modal'
], function($){
setTimeout(function() {
jQuery('#site-pop-up').modal('show');
}, 2000);
});
add a comment |
Add your code in require
so that it will execute with jquery and modal is ready
require([
'jquery',
'Magento_Ui/js/modal/modal'
], function($){
setTimeout(function() {
jQuery('#site-pop-up').modal('show');
}, 2000);
});
add a comment |
Add your code in require
so that it will execute with jquery and modal is ready
require([
'jquery',
'Magento_Ui/js/modal/modal'
], function($){
setTimeout(function() {
jQuery('#site-pop-up').modal('show');
}, 2000);
});
Add your code in require
so that it will execute with jquery and modal is ready
require([
'jquery',
'Magento_Ui/js/modal/modal'
], function($){
setTimeout(function() {
jQuery('#site-pop-up').modal('show');
}, 2000);
});
answered 6 secs ago
Shoaib MunirShoaib Munir
2,4072929
2,4072929
add a comment |
add a comment |
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%2f269644%2fmagento-2-uncaught-error-cannot-call-methods-on-modal-prior-to-initialization%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