Things I learned the hard way XIVII
jQuery
When the DOM isn't reacting to your javascript selectors as expected try a little specificity:
instead of this:
do this:
$("#item_id > a")
$("#item_id > ul > li > a'")