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()
Loose spokes after only a few rides
Delete all lines which don't have n characters before delimiter
Am I thawing this London Broil safely?
Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?
Can a rogue use sneak attack with weapons that have the thrown property even if they are not thrown?
FPGA - DIY Programming
Is an up-to-date browser secure on an out-of-date OS?
When should I buy a clipper card after flying to OAK?
"as much details as you can remember"
Have you ever entered Singapore using a different passport or name?
Are spiders unable to hurt humans, especially very small spiders?
A poker game description that does not feel gimmicky
Did Section 31 appear in Star Trek: The Next Generation?
Does the shape of a die affect the probability of a number being rolled?
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
Why isn't the circumferential light around the M87 black hole's event horizon symmetric?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Worn-tile Scrabble
Aging parents with no investments
What is the closest word meaning "respect for time / mindful"
Deal with toxic manager when you can't quit
Origin of "cooter" meaning "vagina"
If a Druid sees an animal’s corpse, can they Wild Shape into that animal?
Why hard-Brexiteers don't insist on a hard border to prevent illegal immigration after Brexit?
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 6 mins ago
Shoaib Munir
2,4072929
2,4072929
asked 8 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 5 mins 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