trying to fix the issue where on an IOS device the keyboard disrupts fixed elements.
When clicking on a CKEditor text area, my aim is to set the style of that fixed element back to fixed.
Not sure how to detect the CKEditor being focused however.
Nothing I have tried has worked, here is the basic though:
http://jsfiddle.net/B4yGJ/180/
CKEDITOR.replace('editor1');
$('#editor1').focus(function() {
alert('Focused');
});
Actually the jquery is hiding the your '#editor1' editor and creating new jquery editor.but still your triggering the hiding text editor(#editor).
thats whay ur not getting alert box