$(document).on('click', '[data-bid]', function () { var id = $(this).attr('data-bid'); $.ajax({ url: 'index.php?route=blog/blog/descr&id=' + id, type: 'get', dataType: 'json', success: function (json) { if (json['title']) { $('#modal-faq h4').html(json['title']); $('#modal-faq div').html(json['text']); $('#modal-faq').modal({ fadeDuration: 250 }); } } }); return false; });