diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-03-22 18:53:24 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-03-22 18:53:24 +0100 |
commit | 39f40104f06cdcd9b8153b9fa4a32e5a7686bbb2 (patch) | |
tree | b1f09c4fe5eeab3ec7bf0037252c4ca8b2f1090e /program/js | |
parent | 3d525ffaf5b36fc74c5a9fa9ed317bcfdd32e19a (diff) |
Fix javascript error in IE9 when loading form with placeholders into an iframe (#1489008)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/common.js | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/program/js/common.js b/program/js/common.js index f9e945c05..7ad1891ec 100644 --- a/program/js/common.js +++ b/program/js/common.js @@ -720,10 +720,12 @@ jQuery.fn.placeholder = function(text) { var elem = $(this); this.title = text; + // Try HTML5 placeholder attribute first if ('placeholder' in this) { - elem.attr('placeholder', text); // Try HTML5 placeholder attribute first + elem.attr('placeholder', text); } - else { // Fallback to Javascript emulation of placeholder + // Fallback to Javascript emulation of placeholder + else { this._placeholder = text; elem.blur(function(e) { if ($.trim(elem.val()) == "") @@ -740,8 +742,13 @@ jQuery.fn.placeholder = function(text) { elem[(active ? 'addClass' : 'removeClass')]('placeholder').attr('spellcheck', active); }); - if (this != document.activeElement) // Do not blur currently focused element - elem.blur(); + // Do not blur currently focused element + // Catch "unspecified error" in IE9 (#1489008) + try { + if (this != document.activeElement) + elem.blur(); + } + catch(e) {} } }); }; |