This file contains hidden or 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
| http://kolodny.github.io/bookmarklet.html | |
| document.body.addEventListener('click', go); | |
| alert('click on a form element to get a bookmarklet of the saved form'); | |
| function go(event) { | |
| var form = event.target; | |
| while (form && form.tagName !== 'FORM') { | |
| form = form.parentNode; | |
| } |
OlderNewer