on click get html of specfic using jquery code example
Example 1: jquery onclick function
$( "#other" ).click(function() {
$( "#target" ).click();
});
Example 2: class onclick jqery
$(".addproduct").unbind().click(function(){
//do something
});