Edit in JSFiddle

jQuery(document).ready(function() {
        
    // Write your jQuery command after this line ...
    
    jQuery("___").___(function() {
         jQuery("___").___();            
    });
    
    // ... but before this line 
    
    /*
    
    Here is an example:
    
    When I click on the paragraph,
        the paragraph will become hidden

    jQuery("p").click(function() {
         jQuery("p").hide();            
    });
    
    */
    
});