Blur Event

  •  07-21-2011, 6:02 AM

    Blur Event

    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(){
            
        });
     
     
View Complete Thread