Last active
November 4, 2016 13:10
-
-
Save haridsv/13ac3196a7074ffd8756946538cc693a to your computer and use it in GitHub Desktop.
Open Citibank India login dialog and set it right.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:s=document.createElement('script');s.type='text/javascript';document.body.appendChild(s);s.src='https://goo.gl/e8GRr5';void(0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var citiWindow = window.open("https://www.citibank.co.in/ibank/login/IQPin.jsp"); | |
function setItRight() { | |
if (! citiWindow.showhideKeyBoardsv1) { | |
setTimeout(setItRight, 1000); | |
} | |
else { | |
citiWindow.showhideKeyBoardsv1(1); | |
} | |
} | |
setItRight(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Calling JS doesn't work as it gives this error: