var ibutton = document.createElement('input');
ibutton.setAttribute('type', 'button');
ibutton.setAttribute('name', 'button');
ibutton.setAttribute('value', 'Delete');
ibutton.setAttribute('onclick', "deleteImage('<?php echo $_FILES['dt_file']['name'];?>', this,'<?php echo $image_type;?>');return false;");`
The above code creates a delete button. This works fine only for the latest created button.
When I click and select an image, the image is created dynamically with this button, but every time I click and select an image the event onclick only works for the latest created button. All the element created before have no working events, but it does not display any errors.
The above code works fine in Mozilla, but not in IE9.