
Search Registration in IHHL entry
Searching the beneficiary registration number while entering IHHL scheme is an irritating task. Mostly when the registration does not appear in a sequence. So, I am presenting a code snippet which will select that for you.

This will only work in Google Chrome web browser. Here is the steps:
- Press Shift+Ctrl+J while in the above screen.
- Goto Console tab.
- Now copy-paste this code into Console and press Enter key.
document.getElementById("ctl00_ContentPlaceHolder1_grdData_ctl02_ddljobcard").value="WB-00-000-000-000/000"
Points to remember :
i) You must change the value after WB within the “”. It should be looked something like “WB-01-001-001-001/001”
ii) The above code will change the first registration. For the second, change the 02 to 03 and the value after WB correspondingly. So, the second line should look like
document.getElementById(“ctl00_ContentPlaceHolder1_grdData_ctl03_ddljobcard”).value=”WB–01–001–001–001/003“
4. After completing all the Registration copy-paste this code into Console and press Enter key.
javascript:setTimeout('__doPostBack('ctl00$ContentPlaceHolder1$grdData$ctl02$ddljobcard','')', 0)
That’s all. Your work done.
Leave a Reply Cancel reply