$('.form-del-field').click(function(){ MyFunction(); return false; });
Trying to update the form when a user deletes a row from a table.
I am using some code recommended from the community for executing a function when a hyperlink is clicked. Most recommend to include the function name in the hyperlink code but that is impossible since we have no access. This was the only other recommendation I could find. It does not appear to work though.
I found the class for the hyperlink called form-del-field but the function doesn't run.