I am able to do that in IE, but FF doesn't allow to do something like:
$("#txtBox").bind('paste', function (e) {
alert('pasting text!!!!');
alert(window.clipboardData.getData("Text"));
window.event.returnValue = false;
});
I am required to trap the clipboard contents onpaste, then populate a table with this content. We are allowing people to copy and paste from Excel.
What are some of the ways that are being used to achieve this in FF? Thanks