Content Idea Generator

Generate tailored content ideas for your blog, social media, and other marketing channels. Enter your business information and target audience details to receive a list of content ideas.

function downloadReport() { var reportContent = document.getElementById(‘content_ideas_report’).innerText; var blob = new Blob([reportContent], { type: ‘text/plain’ }); var anchor = document.createElement(‘a’); anchor.download = ‘content_ideas_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