trying to select the first parent of type section

trying to select the first parent of type section

I'm trying to get the nearest Section element with class name lc-local-section-wrap.
I've tried $(this).parent().closest("section") and about everything else, but now I'm stuck!

Html:
  1. <section class="lc-local-section-wrap">
  2.     <div class="lc-local-button-wrap">
  3.         <input type="text" id="TextCount" value="1" />
  4.         <button type="submit" value="@Model.ToString()" class="btn btn-danger lc-buy-button"><i class="fa fa-cart-plus" aria-hidden="true"></i></button>
  5.     </div>
  6.     <div class="lc-buy-button-done">
  7.         <img src="/Graphic/green-check-symbol.png" />
  8.     </div>
  9.     <div class="lc-buy-button-subscribe-offer">
  10.         <hr />
  11.         <button type="submit" value="@Model.ToString()" class="btn btn-danger lc-buy-subscribe-button"><i class="fa fa-calendar-o" aria-hidden="true"></i><span class="badge">@_localizer.GetString("SubscribeButtonText")</span></button>
  12.     </div>
  13.     <div class="lc-buy-button-create-subscription">
  14.         <hr />
  15.         <h5>
  16.             @_localizer.GetString("SubscribeButtonText")
  17.         </h5>
  18.         <div>
  19.         </div>
  20.     </div>
  21. </section>


I would like to first get the nearest Section element and use that to select the child element's, something like this:
  1. $.ShowSubscribeButton = function (thisObj) {
  2.     var section = $.GetSection(thisObj);
  3.     $(section).$(".lc-local-button-wrap").hide();
  4.     $(section).$(".lc-buy-button-done").show();
  5.     $(section).$(".lc-buy-button-subscribe-offer").show();
  6.     $(section).$(".lc-buy-button-create-subscription").hide();
  7. }

Is this possible?