So I have the following:
Does not work
$(document).on('click','#memberships_save', function(){
Does work
$('#memberships_save').click(function() {
The element is not dynamically created. The on method works in other triggers on the page, just not for this specific ID. The ID exists only once in the HTML.
Any ideas?