Thanks to the help of another member I have successfully implemented a JS method that has the ability to paste excel data and split it into an HTML textbox table form (see thread).
The issue that I am now faced with is that this is only functional in Chrome, while IE10 and IE11 both flag the following error:
"Unable to get property 'getData' of undefined or null reference."
This error is thrown in the 2nd line of the function (below):
function (event) {
var input_id = $(this).attr("id");
var value = event.originalEvent.clipboardData.getData('text/plain'); //ERROR in IE
/* ... */
event.preventDefault(); // prevent the original paste
}
Wondering if anyone can see the issue at hand with why Chrome is satisfied while IE is not.