jQuery('.otd-but').click(function(event){
event.preventDefault();
var href = jQuery(this).attr('href');
jQuery.ajax({
type: 'GET',
url: '',
data: href,
success: function(html){
jQuery('.time-z').html(html);
},
error: function(xhr, status, error){
jQuery('.time-z').html(error);
}
});
});