Skip to content

Instantly share code, notes, and snippets.

@czj
Created August 10, 2011 08:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czj/1136386 to your computer and use it in GitHub Desktop.
Save czj/1136386 to your computer and use it in GitHub Desktop.
Auto-login bookmarklet for Boursorama Banque (site beta août 2011)
if (window.location != 'https://www.boursorama.com/connexion.phtml')
{
window.location = 'https://www.boursorama.com/connexion.phtml';
}
else
{
document.getElementById('login').value = "";
document.getElementById('password').value = "";
document.getElementById('identification').submit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment