Come faccio ad eseguire una funzione personalizzata sull'evento ctr-v della tastiera???
Ho provato a fare cosi ma mi incolla 2 volte.function IE_kb_handler(evt)
{
var keyCode=evt.keyCode;
if (keyCode==86)
{
incolla();
return false;
}
}
P.S. l'evento è legato ad un iframe in designeMode.
Grazie