I have been working all day to try and troubleshoot an issue. I have a program that does an append of a string at the end of a table row. However, for some reason I am not able to get at this string via Javascript. I've tried the listener thing and for whatever reason the way this particular string is being created I just can't access is via the DOM.
This is essentially the line of code that's giving me trouble...
var delButtonHTML = '<a class="' + options.deleteCssClass + '" href="javascript:void(0)">' + options.deleteText +'</a>';
if (options.deleteContainerClass) {
} else {
row.append(delButtonHTML);
It is creating the button, which is essentially an anchor....but I can't get to it no matter what I try in the DOM. Is there an alternative to append that would work in this situation? I've tinkered with update...and extend and no immediate luck.