Attempted to put a delete button that works in a table into a modal, with a table and it's like the click event is not firing at all. Hit's not back end code, no console.log(s), or js break points. Am I missing something?
Modal's Table
<table class="table table-hover table-md ">
  <thead>
    <tr>
      <td class="text-left TableHead">Role</td>
      <td class="text-right TableHead">Delete</td>
    </tr>
  </thead>
  @*--Table Body For Each to pull DB records--*@
  <tbody>
    @foreach (var role in Model.Roles)
    {
      <tr>
        <td>@role</td>
        <td>
          <button class="sqButton btnRed float-right zIndex" 
                  title="Delete" data-toggle="ajax-modal" data-target="#deleteRoleUser"
                  data-url="@Url.Action("Delete", "Administration",
                  new {Id = Model.Id , Type = "roleUser"})" >
            <i class="glyphicon glyphicon-remove"></i>
          </button>
        </td>
      </tr>
    }
  </tbody>
</table>
Controller that it's supposed to call
[HttpGet]
  public async Task<IActionResult> Delete(string id, string type)
  {         
    if (type == "user") {
      ViewBag.Type = "user";
      var user = await userManager.FindByIdAsync(id);
      if (user == null)
      {
        ViewBag.ErrorMessage = $"User with Id = {id} cannot be found";
        return View("NotFound");
      }
      var model = new EditUserViewModel
      {
        Id = user.Id,          
        UserName = user.UserName,           
      };
      ViewBag.UN = user.UserName;
      return PartialView("~/Views/Modals/_DeleteModalPartial.cshtml", model);
    }
    if (type == "roleUser")
    {
      ViewBag.Type = "roleUser";
      var role = await roleManager.FindByIdAsync(id);
      if (role == null)
      {
        ViewBag.ErrorMessage = $"Role with Id = {id} cannot be found";
        return View("NotFound");
      }
      var model = new EditRoleViewModel
      {
        Id = role.Id,
        RoleName = role.Name,
      };
      ViewBag.Role = role.Name;
      return PartialView("~/Views/Modals/_DeleteModalPartial.cshtml", model);
    }
    else
    {
      ViewBag.ErrorMessage = $"cannot be found";
      return View("NotFound");
    }       
  }
I am not sure why the click event on the button is not working at all. I have tried removing random code and literally nothing is making it go over to the controller at the least.
EDIT added javascript
$(function () {
    var placeholderElement = $('#modal-placeholder');
    $('[data-toggle="ajax-modal"]').click(function (event) {
        var url = $(this).data('url');
        $.get(url).done(function (data) {
            placeholderElement.html(data);
            placeholderElement.find('.modal').modal('show');
        });
    });
});
$('.sqButton').click( function (event) {  
    event.stopPropagation();
});
 
     
     
     
    