A Pen by B Morgan Murrah on CodePen.
Created
August 1, 2016 16:00
-
-
Save anonymous/b45f8f1deffed6656b2a66f3b29034b0 to your computer and use it in GitHub Desktop.
jQuery Modal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bs-example"> | |
<!-- Button HTML (to Trigger Modal) --> | |
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal" data-num="0">Question 1</button> | |
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal" data-num="1">Question 2</button> | |
<!-- Modal HTML --> | |
<div id="myModal" class="modal fade"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
<h4 class="modal-title">Modal Window</h4> | |
</div> | |
<div class="modal-body"> | |
<div class="btn-group" id="carsSelect" data-toggle="buttons"> | |
<div class="radio"> | |
<label> | |
<input type="radio" name="cars" value="Tesla Model 3">Tesla Model 3 | |
</label> | |
</div> | |
<div class="radio"> | |
<label> | |
<input type="radio" name="cars" value="leaf">Nissan Leaf | |
</label> | |
</div> | |
<div class="radio"> | |
<label> | |
<input type="radio" name="cars" value="bolt">Chevy Bolt | |
</label> | |
</div> | |
</div> | |
</div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-primary" onclick="submit()">Submit</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var questions = [ | |
{ | |
prompt: 'Choose an EV', | |
options: ['Tesla Model S', 'Nissan Leaf', 'Chevy Bolt'], | |
correctAnswer: 'Tesla Model S' | |
}, | |
{ | |
prompt: 'Choose a fruit', | |
options: ['Apple', 'Orange', 'Banana', 'Peach'], | |
correctAnswer: 'Apple' | |
} | |
]; | |
function submit() { | |
var selected = $(".modal-body input:checked").val(); | |
alert('You selected ' + selected); | |
} | |
function getOptions(question) { | |
var $buttonDiv = $('<div class="btn-group" data-toggle="buttons"></div>'); | |
question.options.forEach(function(opt) { | |
var $div = $('<div class="radio">'); | |
var $label = $('<label></label'); | |
var $input = $('<input type="radio" name="opts" value="' + opt + '">'); | |
$label.append($input); | |
$label.append(opt); | |
$div.append($label); | |
$buttonDiv.append($div); | |
}); | |
return $buttonDiv; | |
} | |
function showQuestion(event, $modal) { | |
var button = $(event.relatedTarget); // Button that triggered the modal | |
var num = parseInt(button.data('num')); | |
var question = questions[num]; | |
$modal.find('.modal-title').text(question.prompt); | |
$modal.find('.modal-body').append(getOptions(question)); | |
} | |
$(function() { | |
$("#myModal").on('show.bs.modal', function(event) { | |
showQuestion(event, $(this)); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bs-example { | |
margin: 20px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment