Skip to content

Instantly share code, notes, and snippets.

@joachim-n
Created July 10, 2022 20:51
Show Gist options
  • Save joachim-n/f52c66fe1468ee5ff6f3820359b765e3 to your computer and use it in GitHub Desktop.
Save joachim-n/f52c66fe1468ee5ff6f3820359b765e3 to your computer and use it in GitHub Desktop.
Bookmarklet for filling in Dashcam submission form
// Fill in the details with your own.
// Paste this as the URL of a new Firefox bookmark.
// Use the bookmark when on https://secureform.nextbase.co.uk/
javascript: {
document.getElementById('signature').value = '';
document.getElementById('name').value = '';
// Doesn't work yet.
// document.getElementById('preferredContact').value = '0';
document.getElementById('email').value = '';
document.getElementById('phone').value = '';
document.getElementById('address').value = '';
document.getElementById('occupation').value = '';
// Doesn't work yet.
// document.getElementById('age').value = '2';
document.getElementById('date-of-birth').value = '';
document.getElementById('place-of-birth').value = '';
document.getElementById('former-name').value = '';
document.getElementById('gender').value = '';
document.getElementById('dates-unavailiable').value = '';
void (0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment