hi, i want ajax to be called only once, but insted it calls everytime when i click on the button.
my script:
$(document).ready(function(){
$("#modal-launcher-user").click(function(){
$('#preloader_image_edit').show();
$.ajax({
url: "image_edit.php",
cache: false,
})
.done(function( html ) {
$("#preloader_image_edit").hide();
$( "#results_image_edit" ).append( html );
});
});
});