राजनगर थाना इलाके में युवक को चाकू मारने का मामला, घटना के बाद तनावपूर्ण हुआ माहौल
इस ख़बर को सुनने के लिए 👇"Listen" पर क्लिक करें
[tta_listen_btn]
[tts_play]
[gspeech]
राजस्थान में राजसमंद जिले के राजनगर थाना इलाके में हुई चाकूबाजी की घटना के बाद थाने से आक्रोशित युवाओं की भीड़ पुलिस की समझाइस पर वापस जाने लगी. तभी नायकवाड़ी में नारेबाजी के दौरान पत्थरबाजी की घटना सामने आई, जिसके चलते कुछ देर के लिए माहौल खराब हो गया, तो वहीं एक ऑटो में आग लगा दी गई.
var ttsInterval;
(function() {
// Ensure DOM is loaded
function initTTS() {
var btn = document.getElementById('ttsPlayBtn');
if (!btn) return;
btn.addEventListener('click', function() {
var content = document.querySelector('.entry-content') || document.querySelector('.post-content');
if (!content) {
alert('Post content not found');
return;
}
var text = content.innerText.trim();
if (!text) return;
// Stop previous speech
if (window.speechSynthesis.speaking) {
window.speechSynthesis.cancel();
}
var utterance = new SpeechSynthesisUtterance(text);
utterance.lang = 'hi-IN';
utterance.rate = 1;
utterance.pitch = 1;
window.speechSynthesis.speak(utterance);
});
}
// Old Elementor may need small timeout for DOM
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initTTS);
} else {
setTimeout(initTTS, 300);
}
})();