hi every body,
how can i create blur event for editor in jquery. i have create blur event for editor using following code but do not succeed:
Method 1
$('#CE_Editor1_ID_Frame').blur(function(){
alert($('#CE_Editor1_ID').val());
});
Method 2
$('#CE_Editor1_ID').blur(function(){
alert($('#CE_Editor1_ID').val());
});
Method 3
$('#Editor1').blur(function(){
});