How To Save And Close A Bootstrap Modal? April 28, 2023 Post a Comment This question have many answers out there but none of those answers solved my problem. I have a modal with some tags. I am trying to save the values from the selec Solution 1: HTML <div id="someModalId" class="modal fade" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">× </button> <h4 class="modal-title">Modal Header</h4> </div> <div class="modal-body"> <select id="exampleSelect"> </select> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button id="save" onclick="save()" class="btn btn-width bkgrnd-cyan save-details" type="button" name="save-details">Save</button> </div> </div> Copy JS $('#save').click(function() { $select_value = $("#exampleSelect").value(); $('#someModalId').modal('hide'); }); Copy Give your select a name or id Set the value of select to a global variable. Make sure to declare the variable at the top if you are getting an error. Solution 2: I'm not sure the id=1 is fine, but you can use this code to simulate a click on the close button (or you can add an id or a class to it). You may have to remove the onclick="save()" data = {}; $("#save").on("click", function(e){ e.preventDefault(); // prevent de default action, which is to submit // save your value where you want data.select = $("#exampleSelect").value(); // or call the save function here // save(); $(this).prev().click(); }); Copy Solution 3: <button id="save" class="btn btn-width bkgrnd-cyan save-details" type="button" name="save-details" onclick="save()" data-toggle="modal" data-target="#myModalList" data-dismiss="modal">Save</button> Copy this worked very well for me, and its a simple way to do it. after the onclick I used the data-toggle, data-target and data-dismiss in the js function save() I didn't need to code anything but to save data into to my database // Insere notas na base de dados function save() { console.log("func guardar"); if ($("#message-text").val() == "") { alert("Texto vazio"); } else { $(document).ready(function () { $.ajax({ method: "POST", url: "../portal/portalphp/notas.php", data: { num: num, text: $("#message-text").val() } }).done(function (msg) { if (msg == 1) { //alert("Nota guardada com sucesso"); readyNotas(num); console.log("func guardar done == 1"); } else { alert("Erro: não foi possivel guardar"); } }); texto.value = ""; }); console.log("func guardar ready"); } } Copy Solution 4: First, you need to remove onclick="save()" from your button. You don't need that when you are using the on click function directly $('#save').click(function()... As was pointed out in the comments by @Eshwaren, you can't use a number to start an id, so you need fix that as well. To get the value from a select, you have to be able to identify it. A simple solution would be to give your select element an ID. For example: <div class="modal-body"> <select id="data_1"> </select> </div> Copy In your code, you can then assign the value of the select element to a variable. For example: var data_1; $('#save').click(function() { data_1 = $("#data_1").value(); $('#modalid').modal('hide'); }); Copy You can then use that variable elsewhere in your code. There are many more possibilities for solving this, but the root of the issue is being able to identify the select elements in code and recording their respective values. Solution 5: thats my modal window $(function () { $("#dialog").dialog({ modal: true, autoOpen: false, title: "Column Preferences", button: "save", width: 750, height: 620 }); Copy try this to close or hide the window $('#dialog').dialog('close'); Copy Share Post a Comment for "How To Save And Close A Bootstrap Modal?" Top Question Trying To Grab URL Parameters, And POST Them With Form I am trying to get a landing page grab the URL parameters. … Are Deferred Scripts Executed Before DOMContentLoaded Event? Upon defer attribute MDN says: This Boolean attribute is s… How To Fetch Data Over Multiple Pages? My project is based on React, redux, redux-saga, es6 and I … JavaScript Image Slider That Will Allow More Slides To Be Added After Page Load I am currently building an image slider page. The slider lo… JavaScript: Hide Button Link If Input Field Is Empty I am trying to hide a button link (id='btnsubmit') … Auto Width Scroll Bar In Google Chart I using the Google Chart for in my HTML5 Project. which tak… Persistent HTML Outside Of JQuery Mobile Pages I want to include a bit of HTML outside of the element on … CSS Column-count Elements Jumping Across Columns I'm trying to get a dynamic amount of elements to show … How To Make Keypress Event Of Asp Textbox? Hi all i am writing calculation of varius asp textbox contr… LastModified() Function Returns Current Date And Time My question is : why when I use 'document.lastModified&… December 2024 (1) November 2024 (39) October 2024 (63) September 2024 (22) August 2024 (215) July 2024 (181) June 2024 (437) May 2024 (706) April 2024 (446) March 2024 (907) February 2024 (870) January 2024 (824) December 2023 (929) November 2023 (375) October 2023 (526) September 2023 (294) August 2023 (313) July 2023 (258) June 2023 (340) May 2023 (210) April 2023 (133) March 2023 (138) February 2023 (114) January 2023 (266) December 2022 (133) November 2022 (234) October 2022 (165) September 2022 (169) August 2022 (484) July 2022 (308) June 2022 (281) Menu Halaman Statis Beranda © 2022 - javascript dox