Day Calculator

SEO Snippet & Content Optimizer
Google Search Preview:
https://example.com/your-page
Your SEO Title Will Appear Here
Enter a meta description to see how your page might appear in search engine results…
Title Length
0
Meta Length
0
Word Count
0
function updateSeoPreview() { var titleInput = document.getElementById('seo-title'); var descInput = document.getElementById('seo-desc'); var titleDisplay = document.getElementById('preview-title'); var descDisplay = document.getElementById('preview-desc'); var titleCount = document.getElementById('title-count'); var descCount = document.getElementById('desc-count'); var wordCountDisplay = document.getElementById('word-count'); var titleVal = titleInput.value; var descVal = descInput.value; // Update Preview titleDisplay.innerText = titleVal || "Your SEO Title Will Appear Here"; descDisplay.innerText = descVal || "Enter a meta description to see how your page might appear in search engine results…"; // Update Counts titleCount.innerText = titleVal.length; descCount.innerText = descVal.length; // Color Indicators titleCount.style.color = (titleVal.length > 60 || titleVal.length 160 || descVal.length < 120) ? "#d63638" : "#00a32a"; // Word Count for Meta var words = descVal.trim() ? descVal.trim().split(/\s+/).length : 0; wordCountDisplay.innerText = words; } function clearSeoFields() { if(confirm('Are you sure you want to clear all fields?')) { document.getElementById('seo-title').value = ''; document.getElementById('seo-desc').value = ''; updateSeoPreview(); } }

Leave a Comment