Right to Information Wiki

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

User Tools

Site Tools


tag:arunachal-pradesh
Translate:

Login

You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.

Log In

You don't have an account yet? Just get one: Register

Forgotten your password? Get a new one: Set new password

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) {} } })();