Mother's day is the second Sunday of May.
<script>
/*@author huypv*/
function getMotherDay(year) {
var x = new Date(year + '-05-01'), idDay = x.getDay(), y = new Date();
y.setTime(x.getTime() + 7*24*3600*1000 + (idDay== 0 ? 0 : 7-idDay)*24*3600*1000);
return '' + y.getDate() + '/' + (y.getMonth() + 1) + '/' + y.getFullYear(); //format: d/m/Y
}
</script>
Example:
Mother's day 2016 is
Mother's day 2017 is
Mother's day 2018 is
Mother's day 2019 is
Mother's day 2020 is
Mother's day 2021 is
Mother's day 2022 is
Mother's day 2023 is