(function() { var today = new Date(); var gregorian = new Intl.DateTimeFormat('en-GB', { day: 'numeric', month: 'long', year: 'numeric' }).format(today); var hijri = new Intl.DateTimeFormat('en-GB', { calendar: 'islamic-umalqura', day: 'numeric', month: 'long', year: 'numeric' }).format(today); document.getElementById('dual-date').textContent = gregorian + ' | ' + hijri; })();
Go to Top