how to a parent element?

how to a parent element?

I want to find the parent element of some element.

$("tr input").each(function (i) {         
            //loop input elements within tr's
            if(this.name == "cid[]"){
               //checkbox
                                       
                                       //get parent
               td_element = parent.this;

                                        //stuck here!
                  
               
            }
         
      });