JSFiddle - React, Tailwind, and code Playground

by chapmanc

HTML

<button type="button" class="delete-user-button" id="deleteUserButton99">Delete</button>

<img src="http://placehold.it/200x200" class="download-user-button" id="downloadUserButton99"/>

JavaScript

$('.delete-user-button').click(function() {
      // store object that was clicked
      var obj = $(this);
        
      // set that objects action attribute
      obj.attr("action", "/secure/deleteuser/" + obj.attr('id'));
      
      // show the action attribute's value
      alert(obj.attr('action'));
    });
    
    
    $('.download-user-button').click(function() {
      // store object that was clicked
      var obj = $(this);
        
      // set that objects action attribute
      obj.attr("action", "/secure/downloaduserinfo/" + obj.attr('id'));
      
      // show the action attribute's value
      alert(obj.attr('action'));
    });