Is there a way to determine if execCommand('undo') is executable? [JavaScript]

2.8k Views Asked by At

I am trying to determine if the execCommand('undo') can be executed.

I've tried this one:

if(document.execCommand('undo'))
{
    document.execCommand('redo');
    // some code
}

and it works... But it makes me some problems with the other part of the script.

Is there another way to see if 'undo' is executable ?

Thanks in advance!

1

There are 1 best solutions below

1
On BEST ANSWER

(yes, Midas is based on IE interfaces)