Skip to main content

Introduction

रोज़गार समाचार

रोज़गार समाचार - Employment News
प्रिंट संस्करण की वार्षिक सदस्यता 530 रु. में ।। केवल ई-संस्करण की वार्षिक सदस्यता 400 रु. में
विज्ञापनदाता ध्यान दें !! विज्ञापनदाताओं से अनुरोध है कि रिक्तियों का पूर्ण विवरण दें। छोटे विज्ञापनों का न्यूनतम आकार अब 200 वर्ग सेमी होगा
नई विज्ञापन नीति

इस सप्ताह की नौकरियां

संगठन पद योग्यता अंतिम तिथि
केंद्रीय दत्तक संसाधन प्राधिकरण विभिन्न पद प्रतिनियुक्ति 13/08/2025
राष्ट्रीय आपदा प्रबंधन प्राधिकरण वरिष्ठ सलाहकार (शहर बाढ़ प्रबंधन) अनुबंध आधार पर 08/08/2025
राष्ट्रीय आपदा प्रबंधन प्राधिकरण वरिष्ठ सलाहकार (विभिन्न) अनुबंध आधार पर 08/08/2025
फुटवियर डिज़ाइन एण्ड डेवलपमेंट इंस्टीट्यूट कनिष्ठ हिंदी अनुवादक अनुबंध आधार पर 08/08/2025
पदुच्चेरी सरकार, मुख्य सचिवालय सहायक निदेशक प्रतिनियुक्ति 06/08/2025

आलेख

शीर्ष आलेख

स्किल इंडिया: भारत की कौशल क्रांति का भविष्य

प्रधानमंत्री का सिंगापुर और ब्रुनेई दौरा रणनीतिक लाभ और महत्वपूर्ण उपलब्धियां

विशेष आलेख

राष्ट्रीय पोषण माह 2024: पोषण के माध्यम से भारत के भविष्य को मजबूत बनाना

हिंदी: भारत और उसके बाहर विविध संस्कृतियों को एकजुट करना

करियर मार्गदर्शन

पेटेंट एजेंट और पेटेंट डिज़ाइनर के रूप में करियर

भारत की सेमीकंडक्टर क्रांति में इंजीनियरिंग करिअर

सफलता/साक्षात्कार

स्वस्थ भारत, प्रगतिशील भारत सभी को सस्ती और सुलभ स्वास्थ्य सेवा

नीली अर्थव्यवस्था: सतत मत्स्य उद्योग के लिए समग्र दृष्टिकोण

// Smooth scrolling for anchor links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); // Add loading animation to external links document.querySelectorAll('a[href^="http"]').forEach(link => { link.addEventListener('click', function() { const loading = document.createElement('span'); loading.className = 'loading'; loading.style.marginLeft = '10px'; this.appendChild(loading); }); }); // Dynamic job search functionality const searchJobs = (query) => { const rows = document.querySelectorAll('.job-table tbody tr'); rows.forEach(row => { const text = row.textContent.toLowerCase(); const isVisible = text.includes(query.toLowerCase()); row.style.display = isVisible ? '' : 'none'; }); }; // Add search box if needed const addSearchBox = () => { const jobSection = document.querySelector('.job-section'); const searchBox = document.createElement('div'); searchBox.innerHTML = `
`; jobSection.insertBefore(searchBox, jobSection.querySelector('.job-table')); document.getElementById('jobSearch').addEventListener('input', function() { searchJobs(this.value); }); }; // Mobile menu toggle const addMobileMenu = () => { if (window.innerWidth <= 768) { const nav = document.querySelector('.nav'); const toggleBtn = document.createElement('button'); toggleBtn.innerHTML = '☰'; toggleBtn.style.cssText = ` display: block; margin: 10px auto; padding: 10px 20px; background: linear-gradient(45deg, #667eea, #764ba2); color: white; border: none; border-radius: 10px; font-size: 18px; cursor: pointer; `; const menu = document.querySelector('.nav-menu'); menu.style.display = 'none'; toggleBtn.addEventListener('click', () => { menu.style.display = menu.style.display === 'none' ? 'flex' : 'none'; }); nav.insertBefore(toggleBtn, nav.firstChild); } }; // Initialize features addMobileMenu(); // Add dynamic content updates const updateLastModified = () => { const lastModified = document.querySelector('footer p:last-child'); if (lastModified) { const now = new Date(); const formattedDate = now.toLocaleDateString('hi-IN'); lastModified.innerHTML = lastModified.innerHTML.replace( '28 जुलाई 2025', formattedDate ); } }; updateLastModified(); // Add notification system const showNotification = (message, type = 'info') => { const notification = document.createElement('div'); notification.style.cssText = ` position: fixed; top: 20px; right: 20px; z-index: 10000; padding: 15px 25px; border-radius: 10px; color: white; background: ${type === 'success' ? '#4CAF50' : type === 'error' ? '#f44336' : '#2196F3'}; box-shadow: 0 5px 15px rgba(0,0,0,0.3); opacity: 0; transition: all 0.3s ease; transform: translateX(300px); `; notification.textContent = message; document.body.appendChild(notification); setTimeout(() => { notification.style.opacity = '1'; notification.style.transform = 'translateX(0)'; }, 100); setTimeout(() => { notification.style.opacity = '0'; notification.style.transform = 'translateX(300px)'; setTimeout(() => notification.remove(), 300); }, 3000); }; // Add click handlers for various sections document.querySelectorAll('.article-card').forEach(card => { card.addEventListener('click', () => { showNotification('लेख पढ़ने के लिए पूर्ण संस्करण डाउनलोड करें', 'info'); }); }); // Add form validation for subscription const validateEmail = (email) => { return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email); }; // Auto-refresh job listings (simulation) setInterval(() => { const jobRows = document.querySelectorAll('.job-table tbody tr'); if (jobRows.length > 0) { const randomRow = jobRows[Math.floor(Math.random() * jobRows.length)]; randomRow.style.background = 'rgba(255, 107, 107, 0.1)'; setTimeout(() => { randomRow.style.background = ''; }, 2000); } }, 30000); // Add keyboard navigation document.addEventListener('keydown', function(e) { if (e.ctrlKey && e.key === 'f') { e.preventDefault(); const searchInput = document.getElementById('jobSearch'); if (searchInput) { searchInput.focus(); } } }); console.log('🎉 रोज़गार समाचार वेबसाइट लोड हो गई!'); });

Comments

Popular Posts

Presentation