Skip to content

Instantly share code, notes, and snippets.

@xerxesb
Created January 30, 2012 10:03
Show Gist options
  • Save xerxesb/1703659 to your computer and use it in GitHub Desktop.
Save xerxesb/1703659 to your computer and use it in GitHub Desktop.
Dynamic checkboxes in a table
// Given a list of table rows, I want to prepend (or append) a blank checkbox which i'll use to
// check off as i go through the rows one by one....this should work on the netbank site.
// the idea is to just keep this as a bookmarklet and run it when looking at my transaction list
// When running the snip below chrome complains "Uncaught Error: NOT_FOUND_ERR: DOM Exception 8"
javascript:$('#transactionsTableBody > tr').map(function() { this.appendChild($('<td><input type="checkbox" /></td>')) })
@liammclennan
Copy link

liammclennan commented Jan 31, 2012 via email

@xerxesb
Copy link
Author

xerxesb commented Jan 31, 2012

yeah makes sense - thanks :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment