I have the following button:
<button class="btn btn-default details" data-id="@fornecedores.Codigo"><i class="glyphicon glyphicon-file"></i></button>
On the same page I have the following script:
$(document).ready(function () {
$(".details").click(function () {
var id = $(this).attr("data-id");
$("#modal").load("Detalhes?id=" + id, function () {
$("modal").modal('show');
})
});
})
When I click Click it looks at the message that appears:
ThisexampleItookthislink: link