var createModalDiv = function() { if($('#infoModal').length == 0) { $('body').append('' + '
'); } }; $(function() { $(".modal-table tbody tr").click(function(e) { createModalDiv(); var headers = $(this).parent("tbody").parent("table").find('th'); var values = $(this).children("td"); var content = ''; for(var i=0;i" + values.eq(i).html() + "
"; } $('#infoModal > .modal-body').html(content); $('#infoModal').modal('show'); }); $(".modal-table tbody tr td a").click(function(e) { e.stopPropagation(); e.preventDefault(); window.location.href = $(this).attr("href"); return false; }); });