IE11 crashes on post page
-
Here is the relevant code.
[aioseop-preview-snippet.js]
function addEvent(item) { item.on('input', function () { aioseopUpdatePreviewSnippet(); }); }
IE11 has a bug in the input event.
It happens in the input event of the input tag with the placeholder attribute.
the input event fire at unintended times.Use the keyup event to work around this bug.
function addEvent(item) { item.on('keyup', function () { aioseopUpdatePreviewSnippet(); }); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘IE11 crashes on post page’ is closed to new replies.