Social Media Post Scheduler

Plan and schedule your social media posts. Enter the details of your post to receive a suggested schedule.

function downloadReport() { var reportContent = document.getElementById(‘post_schedule_report’).innerText; var blob = new Blob([reportContent], { type: ‘text/plain’ }); var anchor = document.createElement(‘a’); anchor.download = ‘post_schedule_report.txt’; anchor.href = window.URL.createObjectURL(blob); anchor.target = ‘_blank’; anchor.style.display = ‘none’; document.body.appendChild(anchor); anchor.click(); document.body.removeChild(anchor); }

Leave a Reply