Right to Information Wiki

The working reference for India's Right to Information Act, 2005.

User Tools

Site Tools


tag:rbi
Translate:

Media Manager

Media Files

Upload to tag

Sorry, you don't have enough rights to upload files.

File

Was this helpful? views
document.addEventListener('keydown', function(e){ if (!paginated) return; if (e.target && (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA' || e.target.isContentEditable)) return; if (e.key === 'ArrowLeft' && current > 0){ current--; applyState(); jumpTop(); } if (e.key === 'ArrowRight' && current < total - 1){ current++; applyState(); jumpTop(); } }); } function jumpTop(){ try { window.scrollTo({top: 0, behavior: 'smooth'}); } catch(e){ window.scrollTo(0, 0); } } function fetchSuggestions(pageId, content){ if (!pageId) return; try { fetch('/suggest.php?id=' + encodeURIComponent(pageId)) .then(function(r){ return r.json(); }) .then(function(list){ if (!Array.isArray(list) || !list.length) return; var panel = document.createElement('section'); panel.className = 'rti-readnext'; var cards = list.slice(0, 4).map(function(e){ var title = String(e.title || e.id || '').replace(/[<>"']/g, ''); var url = String(e.url || '/' + (e.id || '')).replace(/[<>"']/g, ''); var tags = (e.sharedTags && e.sharedTags.length) ? '
' + e.sharedTags.slice(0,3).map(function(t){ return '' + String(t).replace(/[<>"']/g,'') + ''; }).join(' ') + '
' : ''; return '' + '
' + title + '
' + tags + '
'; }).join(''); panel.innerHTML = '

Read next

' + '

Based on shared topics and what readers are exploring now.

' + '
' + cards + '
'; content.appendChild(panel); }).catch(function(){}); } catch(e) {} } })();