41

How to Open MyListing Website Listings in a New Browser Tab

Powered by WPCodeBox

Improve MyListing website browsing with this snippet that opens listings in a new browser tab, allowing users to view multiple listings without reloading the Explore page.


/**
 * Author: MyListing Club
 * Author URI: https://mylisting.club
 */

jQuery(function ($) {
  $("body.page-id-000, body.page-id-001").on(
    "click",
    ".lf-item > a",
    function (e) {
      e.preventDefault();
      window.open($(this).attr("href"), "_blank");
    }
  );
});

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.