function getDataForDiv(){
var url = "/getDataForDiv/";
$.ajax({
async: true,
type: 'POST',
url: url,
dataType: 'json',
success: function(data){
$('#someDiv').click(function(){
alert(data)
});
}
});
}