$.ajax({
url: 'islem.php',
dataType: 'html',
success: function(data) {
$('#result').html(data); // islem.php den gelen veri
}
});