Bootstrap modal in html page












0















I am trying to insert a modal into a html page. I took the example from bootstrap page:



<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong">
Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>


It's not working(nothing pops up). I also use thymeleaf in my project and i think there is the problem but i don't know what it is. Thanks.










share|improve this question


















  • 1





    What is the complete HTML page, from <html> to </html>, as shown when you right-click and select "view page source" in your browser?

    – JB Nizet
    Nov 25 '18 at 12:43








  • 1





    Make sure you include both jquery.js and bootstrap.js into your html for the modal to work.

    – Chris
    Nov 26 '18 at 10:50











  • Thank you very much! I forgot to include jquery.js in my html :(

    – Crisan Andrei
    Dec 3 '18 at 18:29
















0















I am trying to insert a modal into a html page. I took the example from bootstrap page:



<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong">
Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>


It's not working(nothing pops up). I also use thymeleaf in my project and i think there is the problem but i don't know what it is. Thanks.










share|improve this question


















  • 1





    What is the complete HTML page, from <html> to </html>, as shown when you right-click and select "view page source" in your browser?

    – JB Nizet
    Nov 25 '18 at 12:43








  • 1





    Make sure you include both jquery.js and bootstrap.js into your html for the modal to work.

    – Chris
    Nov 26 '18 at 10:50











  • Thank you very much! I forgot to include jquery.js in my html :(

    – Crisan Andrei
    Dec 3 '18 at 18:29














0












0








0








I am trying to insert a modal into a html page. I took the example from bootstrap page:



<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong">
Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>


It's not working(nothing pops up). I also use thymeleaf in my project and i think there is the problem but i don't know what it is. Thanks.










share|improve this question














I am trying to insert a modal into a html page. I took the example from bootstrap page:



<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong">
Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>


It's not working(nothing pops up). I also use thymeleaf in my project and i think there is the problem but i don't know what it is. Thanks.







spring bootstrap-4 thymeleaf






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 25 '18 at 12:31









Crisan AndreiCrisan Andrei

1




1








  • 1





    What is the complete HTML page, from <html> to </html>, as shown when you right-click and select "view page source" in your browser?

    – JB Nizet
    Nov 25 '18 at 12:43








  • 1





    Make sure you include both jquery.js and bootstrap.js into your html for the modal to work.

    – Chris
    Nov 26 '18 at 10:50











  • Thank you very much! I forgot to include jquery.js in my html :(

    – Crisan Andrei
    Dec 3 '18 at 18:29














  • 1





    What is the complete HTML page, from <html> to </html>, as shown when you right-click and select "view page source" in your browser?

    – JB Nizet
    Nov 25 '18 at 12:43








  • 1





    Make sure you include both jquery.js and bootstrap.js into your html for the modal to work.

    – Chris
    Nov 26 '18 at 10:50











  • Thank you very much! I forgot to include jquery.js in my html :(

    – Crisan Andrei
    Dec 3 '18 at 18:29








1




1





What is the complete HTML page, from <html> to </html>, as shown when you right-click and select "view page source" in your browser?

– JB Nizet
Nov 25 '18 at 12:43







What is the complete HTML page, from <html> to </html>, as shown when you right-click and select "view page source" in your browser?

– JB Nizet
Nov 25 '18 at 12:43






1




1





Make sure you include both jquery.js and bootstrap.js into your html for the modal to work.

– Chris
Nov 26 '18 at 10:50





Make sure you include both jquery.js and bootstrap.js into your html for the modal to work.

– Chris
Nov 26 '18 at 10:50













Thank you very much! I forgot to include jquery.js in my html :(

– Crisan Andrei
Dec 3 '18 at 18:29





Thank you very much! I forgot to include jquery.js in my html :(

– Crisan Andrei
Dec 3 '18 at 18:29












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467454%2fbootstrap-modal-in-html-page%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
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467454%2fbootstrap-modal-in-html-page%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Costa Masnaga

Fotorealismo

Sidney Franklin