$(document).on('click', '#getFishingBoatEditModalBtn', function (){ getFishingBoatEditModal(null, null); }) function getFishingBoatEditModal(fbKey, cdsKey){ $.ajax({ url: '/faStatistics/fishingBoatEditModal', data: {fbKey: fbKey, cdsKey: cdsKey}, type: 'GET', dataType:"html", success: function(html){ $("#fishingBoatEditModalContent").empty().append(html) $("#fishingBoatEditModal").modal('show'); }, error:function(){ } }); }