I'm trying to paste a single column from excel into a text input. Firefox does this without problem, but IE only pastes the top cell of the column.
Using window.clipboardData.getData("Text"); and removing all \n 's gives me what I want, but also raises a popup which annoys users.
I also tried changing foxus to a hidden textarea when the onPaste event was fired in an attempt to get the excel column pasted there, without much success.