Skip to content

Instantly share code, notes, and snippets.

@slikts
Created April 13, 2011 11:40
Show Gist options
  • Save slikts/917392 to your computer and use it in GitHub Desktop.
Save slikts/917392 to your computer and use it in GitHub Desktop.
Login bookmarklet for a Prototype site
javascript:(function() {
var usr = '000000', pwd = '000000', cde = '000000';
var card;
if (card = $('cardPwd')) {
card.value = cde;
} else {
$('userId').value = usr;
$('fixedPwd').value = pwd;
}
$('loginForm').submit();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment