data target in html code example
Example 1: javascript modal close
$('#closemodal').click(function() {
$('#modalwindow').modal('hide');
});
Example 2: data-target in html
Notice the link element has two custom data attributes:
data-toggle and data-target . The toggle tells Bootstrap what to do
and the target tells Bootstrap which element is going to open.
So whenever a link like that is clicked,
a modal with an ID of “basicModal” will appear