$('.btn-bus-choose').click(function () { var providerId = $(this).data("provider-id"); var journeyId = $(this).data("journey-id"); $.ajax({ url: '/otobus-detay', data: { providerId: providerId, journeyId: journeyId, searchId: $('[name="busSearchId"]').val() }, dataType: 'html', success: function (content) { // Change button name if its success. var $this = $(this); if ($(this).text() === 'Seç') { // If state=Seç then we need to change to 'Kapat' $(this).text('Kapat'); } else { // This means state=Kapat and we need to change to 'Seç' $(this).text('Seç'); } var detailDiv = $('.bus-seat-list[data-provider-id="' + providerId + '"][data-journey-id="' + journeyId + '"]').find('td'); detailDiv.html(content); }, type: 'POST' }); });