CmdReturnSubmit for Saving Comments
RodSloan                
                
                     New                
            I've been banging away at this a bit and could use some help, or some fresh eyes.
I want to add the functionality to the CmdReturnSubmit plugin to let a user press Cmd/Ctrl and Return to submit an edited comment, as if they had clicked the 'Save Comment' button.
How do I specify which textarea (id='Form_Body' in both cases) to attach the event to so that I can add something like the following code to class.cmdreturnsubmit.plugin.php?
$('#Form_Body').keydown(function(event){
    if((event.ctrlKey||event.metaKey) && ((event.keyCode == 0xA)||(event.keyCode == 0xD)))
        $('#Form_SaveComment').click(); 
    });
                1          
            
        
            
Comments
I have added support for this. Thanks for pointing this out!
Excellent! Thank you so much!