guides.wealthclub.co.uk Open in urlscan Pro
107.178.254.45  Public Scan

Submitted URL: https://thesolicitorsgroup.em360.uk/r/497a04310e9be9838653f9a74?ct=YTo1OntzOjY6InNvdXJjZSI7YToyOntpOjA7czoxNDoiY2FtcGFpZ24uZXZlbnQiO...
Effective URL: https://guides.wealthclub.co.uk/tax-efficient-guide?cpn=4303f06e-c39e-5342-fca3-56e51b6650a6&cpn_override=1&utm_medium=email&utm...
Submission: On October 15 via manual from GB — Scanned from DE

Form analysis 1 forms found in the DOM

Name: request_formPOST https://portal.wealthclub.co.uk/submit/postBox

<form id="submitToCrm" action="https://portal.wealthclub.co.uk/submit/postBox" name="request_form" method="POST" onsubmit="javascript:document.charset='UTF-8'; return checkMandatory()" accept-charset="UTF-8" class="email-form"
  data-gtm-vis-recent-on-screen-6429880_55="132" data-gtm-vis-first-on-screen-6429880_55="132" data-gtm-vis-total-visible-time-6429880_55="100" data-gtm-vis-has-fired-6429880_55="1">
  <!-- **** CUSTOM FIELD VALUES **** -->
  <input type="hidden" name="redirect" value="//guides.wealthclub.co.uk/tax-efficient-guide-download">
  <input type="hidden" name="leadSource" value="Tax-efficient investing guide (Octopus sponsored)">
  <!-- **** CUSTOM FIELD VALUES END **** -->
  <input type="hidden" id="cpn" name="campaignId" value="4303f06e-c39e-5342-fca3-56e51b6650a6">
  <div class="input-holder field-select">
    <div class="field-element">
      <div class="select-outer">
        <select style="width:290px" name="salutation" placeholder="Salutation">
          <option value="-Title-">-Title-</option>
          <option value="Mr">Mr.</option>
          <option value="Mrs">Mrs.</option>
          <option value="Ms">Ms.</option>
          <option value="Miss">Miss</option>
          <option value="Dr">Dr.</option>
          <option value="Prof">Prof.</option>
          <option value="Rev">Rev.</option>
          <option value="Sir">Sir</option>
          <option value="Dame">Dame</option>
          <option value="Lord">Lord</option>
          <option value="Lady">Lady</option>
        </select>
      </div>
    </div>
  </div>
  <div class="input-holder field-text">
    <div class="field-element">
      <div class="select-outer">
        <input style="width:290px" type="text" maxlength="40" name="firstName" placeholder="First Name" class="shortnice form-input required">
      </div>
    </div>
  </div>
  <div class="input-holder field-text">
    <div class="field-element">
      <div class="select-outer">
        <input style="width:290px" type="text" maxlength="80" name="lastName" placeholder="Last Name" class="shortnice form-input required">
      </div>
    </div>
  </div>
  <div class="input-holder field-text">
    <div class="field-element">
      <div class="select-outer">
        <input style="width:290px" type="text" maxlength="30" name="phoneNumber" placeholder="Phone" class="shortnice form-input required">
        <!-- type="tel" is friendlier for mobile devices but requires custom styling -->
      </div>
    </div>
  </div>
  <div class="input-holder field-text">
    <div class="field-element">
      <div class="select-outer">
        <input style="width:290px" type="email" maxlength="100" name="emailAddress" placeholder="Email" class="shortnice form-input required">
      </div>
    </div>
  </div>
  <div class="input-holder field-text">
    <div class="field-element">
      <div class="select-outer" style="width:290px">
        <div id="postcode_lookup_field" class="shortnice form-input required"><input type="text" id="idpc_input" value="Postcode" class="shortnice form-input required postcode_lookup" style="color:#CBCBCB;"><button id="idpc_button" type="button"
            class="btn lookup_button" onclick="return false;">Find my Address</button></div>
      </div>
    </div>
  </div>
  <input type="hidden" maxlength="250" name="address1" id="address1" class="shortnice form-input required">
  <input type="hidden" maxlength="250" name="address2" id="address2">
  <input type="hidden" maxlength="250" name="address3" id="address3">
  <input type="hidden" maxlength="30" name="postTown" id="postTown" class="shortnice form-input required">
  <input type="hidden" maxlength="250" name="postcode" id="postcode">
  <script>
    $("#postcode_lookup_field").setupPostcodeLookup({
      api_key: "ak_ijqszhstJK2b32G4yB7Px4BbLbwpc",
      // Pass in CSS selectors pointing to input fields
      output_fields: {
        line_1: "#address1",
        line_2: "#address2",
        line_3: "#address3",
        post_town: "#postTown",
        postcode: "#postcode"
      },
      button_class: "btn lookup_button",
      button_disabled_message: "Searching...",
      input_class: "shortnice form-input required postcode_lookup",
      error_message_default: "Sorry, we couldn't get the address. Please type a valid UK postcode.",
      error_message_invalid_postcode: "Sorry, your postcode seems to be incorrect. Please type a valid UK postcode.",
      error_message_not_found: "Sorry, we couldn't get the address. Please type a valid UK postcode.",
      input_label: "Postcode",
      onAddressSelected: function(address) {}
    });
  </script>
  <script>
    var mFields = new Array("lastName", "emailAddress", "phoneNumber", "address1", "postcode");
    var fldLangVal = new Array("Last Name", "Email", "Phone", "Street", "Postcode");
    var name = "";
    var email = "";

    function hidePopups() {
      document.getElementsByClassName("popup-close-button")[0].click()
    }

    function doFormPost() {
      hidePopups()
      if (checkMandatory()) {
        document.getElementById("submitToCrm").submit()
      }
    }

    function checkMandatory() {
      for (i = 0; i < mFields.length; i++) {
        var fieldObj = document.forms["request_form"][mFields[i]];
        if (fieldObj) {
          if (((fieldObj.value).replace(/^\s+|\s+$/g, "")).length == 0) {
            if (mFields[i] == "address1") {
              alert("Please click Find Address and select your address")
            } else {
              alert(fldLangVal[i] + " cannot be empty");
            }
            fieldObj.focus();
            return false;
          }
          try {
            if (fieldObj.name == "Last Name") {
              name = fieldObj.value;
            }
          } catch (e) {}
        }
      }
      return true
    }

    function getUrlVars() {
      var vars = [],
        hash;
      var hashes = window.location.href.slice(window.location.href.indexOf("?") + 1).split("&");
      for (var i = 0; i < hashes.length; i++) {
        hash = hashes[i].split("=");
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
      }
      return vars;
    }
    $("#cpn").val(getUrlVars()["cpn"])
  </script>
</form>

Text Content

FREE GUIDE: ‘TAX-EFFICIENT INVESTING FOR HIGH EARNERS’

GET YOUR FREE GUIDE


When you download information, you become a member of Wealth Club and will
receive further information by post and/or email about our products and
services. There are no costs or obligations attached to your membership and you
can cancel it at any time or object to your data being processed by contacting
us. Your personal data will remain confidential, and will never be passed to any
other company, unless required by law. Read our full Privacy Policy

-Title- Mr. Mrs. Ms. Miss Dr. Prof. Rev. Sir Dame Lord Lady




Find my Address
Get guide now

I understand I will need to declare I am a High Net Worth Individual or
Sophisticated Investor before I am able to receive further information.

 




BY AWARD-WINNING SUNDAY TIMES COLUMNIST IAN COWIE

Is the tax burden for the wealthy set to rise – again? What can experienced
investors do if you want to reduce the tax you pay?

This free 20-page guide explains in plain English how you could:



Get up to 50% income tax relief



Earn sizeable tax-free dividends




Wipe out up to half of a capital gains tax bill



Shield your investments from 40% IHT



Escape the squeeze on pension contributions

With Covid-19 placing ongoing demands on the public purse, newspaper and
economic commentators all seem to agree on one thing: tax rises appear
“inevitable”. Where can you still turn if you want to invest tax efficiently –
while also empowering British economic recovery? Download your free guide to
find out.



Please note: some of the investments described are in small companies, which are
riskier than larger ones. The trade-off is that if you are a high net worth
individual or sophisticated investor you could enjoy very significant benefits.
Remember, tax rules can change and benefits will depend on your circumstances.
This free guide is not advice or a personal recommendation – it simply explains
the main facts, so you can decide for yourself.



Download your free guide now »

THIS FREE GUIDE IS SPONSORED BY

IMPORTANT NOTE





Wealth Club's service is directed exclusively at, and intended to be used only
by, persons in the UK who will be required to self-certify as Sophisticated
Investors or High Net Worth Individuals before applying to invest in any of the
products featured. It is not directed at any person where (by reason of
nationality, residence, domicile or otherwise) the usage of the website is
prohibited.




The investment products on this website are not for everyone. They are generally
higher risk and require a longer investment term. You may get back less than you
invest. It is therefore important that you understand the Risks and Commitments
of these products. 





We’ve made every effort to ensure the accuracy of the material on our website,
but cannot guarantee its accuracy or currency. It reflects our understanding of
current product and tax rules, which may change in future. It is for general
information only and should not be regarded as constituting an offer or a
solicitation to buy or sell any securities, or as investment or tax advice. If
you are in any doubt as to the suitability of the products for your
circumstances, please seek specialist financial or tax advice.




AS SEEN ON…

Copyright © Wealth Club 2021. Wealth Club Limited is authorised and regulated by
the Financial Conduct Authority, register number 725176. Registered Office: 20
Richmond Hill, Bristol, BS8 1BA. United Kingdom. Registered in England and
Wales, number 09831162. Contact us | Terms of Business [PDF]