nextcloud/apps/calendar/js/settings.js

16 lines
367 B
JavaScript
Raw Normal View History

$(document).ready(function(){
$("#timezone").change( function(){
// Serialize the data
var post = $( "#timezone" ).serialize();
// Ajax foo
$.post( oc_webroot + '/apps/calendar/ajax/settimezone.php', post, function(data){
if( data.status == "success" ){
}
else{
$('#timezoneerror').html( data.data.message );
}
});
return false;
});
});