I am working on mvc5 project. After save image on server, then I am dynamically binding its name with delete button. here is jquery code,
- success: function (res) {
- var content = '+ res.fileName + '">';
+ res.imgId + '" src="' + res.imgFullPath + '" width="135" height="135"> + res.fileName + '" name="img_' + res.id + '">
- }
But, now I am click on the delete button it is not executing 'product.DeleteProImage('imagename')' fuction. How can I solve this issue ?

Abhilash J APosted May 1, 2017, 11:15 AM
Nilesh ShahPosted May 1, 2017, 10:32 AM