20 Things to Teach Your Child About Finances (2024)

Subscribe now and turn our investment insights into your opportunities.

Subscribe now

By providing your details you are agreeing to receive emails from Eastspring Investments. All emails include an unsubscribe link and you may opt out at any time. For more information, please read Eastspring Privacy Policy.

Thanks for
subscribing!

").addClass("nice-select").addClass(t.attr("class") || "").addClass(t.attr("disabled") ? "disabled" : "").attr("tabindex", t.attr("disabled") ? null : "0").html('

    ')); var s = t.next(), n = t.find("option"), i = t.find("option:selected"); s.find(".current").html(i.data("display") || i.text()), n.each(function (t) { var n = e(this), i = n.data("display"); s.find("ul").append(e("

  • ").attr("data-value", n.val()).attr("data-display", i || null).addClass("option" + (n.is(":selected") ? " selected" : "") + (n.is(":disabled") ? " disabled" : "")).html(n.text())) }) } if ("string" == typeof t) return "update" == t ? this.each(function () { var t = e(this), n = e(this).next(".nice-select"), i = n.hasClass("open"); n.length && (n.remove(), s(t), i && t.next().trigger("click")) }) : "destroy" == t ? (this.each(function () { var t = e(this), s = e(this).next(".nice-select"); s.length && (s.remove(), t.css("display", "")) }), 0 == e(".nice-select").length && e(document).off(".nice_select")) : console.log('Method "' + t + '" does not exist.'), this; this.hide(), this.each(function () { var t = e(this); t.next().hasClass("nice-select") || s(t) }), e(document).off(".nice_select"), e(document).on("click.nice_select", ".nice-select", function (t) { var s = e(this); e(".nice-select").not(s).removeClass("open"), s.toggleClass("open"), s.hasClass("open") ? (s.find(".option"), s.find(".focus").removeClass("focus"), s.find(".selected").addClass("focus")) : s.focus() }), e(document).on("click.nice_select", function (t) { 0 === e(t.target).closest(".nice-select").length && e(".nice-select").removeClass("open").find(".option") }), e(document).on("click.nice_select", ".nice-select .option:not(.disabled)", function (t) { var s = e(this), n = s.closest(".nice-select"); n.find(".selected").removeClass("selected"), s.addClass("selected"); var i = s.data("display") || s.text(); n.find(".current").text(i), n.prev("select").val(s.data("value")).trigger("change") }), e(document).on("keydown.nice_select", ".nice-select", function (t) { var s = e(this), n = e(s.find(".focus") || s.find(".list .option.selected")); if (32 == t.keyCode || 13 == t.keyCode) return s.hasClass("open") ? n.trigger("click") : s.trigger("click"), !1; if (40 == t.keyCode) { if (s.hasClass("open")) { var i = n.nextAll(".option:not(.disabled)").first(); i.length > 0 && (s.find(".focus").removeClass("focus"), i.addClass("focus")) } else s.trigger("click"); return !1 } if (38 == t.keyCode) { if (s.hasClass("open")) { var l = n.prevAll(".option:not(.disabled)").first(); l.length > 0 && (s.find(".focus").removeClass("focus"), l.addClass("focus")) } else s.trigger("click"); return !1 } if (27 == t.keyCode) s.hasClass("open") && s.trigger("click"); else if (9 == t.keyCode && s.hasClass("open")) return !1 }); var n = document.createElement("a").style; return n.cssText = "pointer-events:auto", "auto" !== n.pointerEvents && e("html").addClass("no-csspointerevents"), this } }(jQuery); //nice select end (function ($) { $.fn.niceSelect = function (method) { // Methods if (typeof method == 'string') { if (method == 'update') { this.each(function () { var $select = $(this); var $dropdown = $(this).next('.nice-select'); var open = $dropdown.hasClass('open'); if ($dropdown.length) { $dropdown.remove(); create_nice_select($select); if (open) { $select.next().trigger('click'); } } }); } else if (method == 'destroy') { this.each(function () { var $select = $(this); var $dropdown = $(this).next('.nice-select'); if ($dropdown.length) { $dropdown.remove(); $select.css('display', ''); } }); if ($('.nice-select').length == 0) { $(document).off('.nice_select'); } } else { console.log('Method "' + method + '" does not exist.') } return this; } // Hide native select this.hide(); // Create custom markup this.each(function () { var $select = $(this); if (!$select.next().hasClass('nice-select')) { create_nice_select($select); } }); function create_nice_select($select) { $select.after($('

    ') .addClass('nice-select') .addClass($select.attr('class') || '') .addClass($select.attr('disabled') ? 'disabled' : '') //.addClass($select.attr('multiple') ? 'has-multiple' : '') .attr('tabindex', $select.attr('disabled') ? null : '0') .html($select.attr('multiple') ? '

      ' : '

        ') ); var $dropdown = $select.next(); var $options = $select.find('option'); if ($select.attr('multiple')) { var $selected = $select.find('option:selected'); var $selected_html = ''; $selected.each(function () { $selected_option = $(this); $selected_text = $selected_option.data('display') || $selected_option.text(); if (!$selected_option.val()) { return; } $selected_html += '' + $selected_text + ''; }); $select_placeholder = $select.data('js-placeholder') || $select.attr('js-placeholder'); $select_placeholder = !$select_placeholder ? 'Select' : $select_placeholder; $selected_html = $selected_html === '' ? $select_placeholder : $selected_html; $dropdown.find('.multiple-options').html($selected_html); } else { var $selected = $select.find('option:selected'); $dropdown.find('.current').html($selected.data('display') || $selected.text()); } $options.each(function (i) { var $option = $(this); var display = $option.data('display'); $dropdown.find('ul').append($('

      • ') .attr('data-value', $option.val()) .attr('data-display', (display || null)) .addClass('option' + ($option.is(':selected') ? ' selected' : '') + ($option.is(':disabled') ? ' disabled' : '')) .html($option.text()) ); }); } /* Event listeners */ // Unbind existing events in case that the plugin has been initialized before $(document).off('.nice_select'); // Open/close $(document).on('click.nice_select', '.nice-select', function (event) { //alert('hi'); var $dropdown = $(this); $('.nice-select').not($dropdown).removeClass('open'); $dropdown.toggleClass('open'); if ($dropdown.hasClass('open')) { $dropdown.find('.option'); $dropdown.find('.nice-select-search').val(''); $dropdown.find('.nice-select-search').focus(); $dropdown.find('.focus').removeClass('focus'); $dropdown.find('.selected').addClass('focus'); $dropdown.find('ul li').show(); } else { $dropdown.focus(); } }); $(document).on('click', '.nice-select-search-box', function (event) { event.stopPropagation(); return false; }); $(document).on('keyup.nice-select-search', '.nice-select', function () { var $self = $(this); var $text = $self.find('.nice-select-search').val(); var $options = $self.find('ul li'); if ($text == '') $options.show(); else if ($self.hasClass('open')) { $text = $text.toLowerCase(); var $matchReg = new RegExp($text); if (0 < $options.length) { $options.each(function () { var $this = $(this); var $optionText = $this.text().toLowerCase(); var $matchCheck = $matchReg.test($optionText); $matchCheck ? $this.show() : $this.hide(); }) } else { $options.show(); } } $self.find('.option'), $self.find('.focus').removeClass('focus'), $self.find('.selected').addClass('focus'); }); // Close when clicking outside $(document).on('click.nice_select', function (event) { if ($(event.target).closest('.nice-select').length === 0) { $('.nice-select').removeClass('open').find('.option'); } }); // Option click $(document).on('click.nice_select', '.nice-select .option:not(.disabled)', function (event) { var $option = $(this); var $dropdown = $option.closest('.nice-select'); if ($dropdown.hasClass('has-multiple')) { if ($option.hasClass('selected')) { $option.removeClass('selected'); } else { $option.addClass('selected'); } $selected_html = ''; $selected_values = []; $dropdown.find('.selected').each(function () { $selected_option = $(this); var attrValue = $selected_option.data('value'); var text = $selected_option.data('display') || $selected_option.text(); $selected_html += (` ${text} X`); $selected_values.push($selected_option.data('value')); }); $select_placeholder = $dropdown.prev('select').data('js-placeholder') || $dropdown.prev('select').attr('js-placeholder'); $select_placeholder = !$select_placeholder ? 'Select' : $select_placeholder; $selected_html = $selected_html === '' ? $select_placeholder : $selected_html; $dropdown.find('.multiple-options').html($selected_html); $dropdown.prev('select').val($selected_values).trigger('change'); } else { $dropdown.find('.selected').removeClass('selected'); $option.addClass('selected'); var text = $option.data('display') || $option.text(); $dropdown.find('.current').text(text); $dropdown.prev('select').val($option.data('value')).trigger('change'); } console.log($('.mySelect').val()) }); //---------remove item $(document).on('click', '.remove', function () { var $dropdown = $(this).parents('.nice-select'); var clickedId = $(this).parent().data('id') $dropdown.find('.list li').each(function (index, item) { if (clickedId == $(item).attr('data-value')) { $(item).removeClass('selected') } }) $selected_values.forEach(function (item, index, object) { if (item === clickedId) { object.splice(index, 1); } }); $(this).parent().remove(); console.log($('.mySelect').val()) }) // Keyboard events $(document).on('keydown.nice_select', '.nice-select', function (event) { var $dropdown = $(this); var $focused_option = $($dropdown.find('.focus') || $dropdown.find('.list .option.selected')); // Space or Enter if (event.keyCode == 32 || event.keyCode == 13) { if ($dropdown.hasClass('open')) { $focused_option.trigger('click'); } else { $dropdown.trigger('click'); } return false; // Down } else if (event.keyCode == 40) { if (!$dropdown.hasClass('open')) { $dropdown.trigger('click'); } else { var $next = $focused_option.nextAll('.option:not(.disabled)').first(); if ($next.length > 0) { $dropdown.find('.focus').removeClass('focus'); $next.addClass('focus'); } } return false; // Up } else if (event.keyCode == 38) { if (!$dropdown.hasClass('open')) { $dropdown.trigger('click'); } else { var $prev = $focused_option.prevAll('.option:not(.disabled)').first(); if ($prev.length > 0) { $dropdown.find('.focus').removeClass('focus'); $prev.addClass('focus'); } } return false; // Esc } else if (event.keyCode == 27) { if ($dropdown.hasClass('open')) { $dropdown.trigger('click'); } // Tab } else if (event.keyCode == 9) { if ($dropdown.hasClass('open')) { return false; } } }); // Detect CSS pointer-events support, for IE <= 10. From Modernizr. var style = document.createElement('a').style; style.cssText = 'pointer-events:auto'; if (style.pointerEvents !== 'auto') { $('html').addClass('no-csspointerevents'); } return this; }; }(jQuery)); $(document).ready(function () { $('select:not(.select-2)').niceSelect(); $('.select-2').niceSelect(); //$('.success-msg').hide(); }); function set_cookie(cookie_name, cookie_value, lifespan_in_days, valid_domain) { lifespan_in_days = 90; //As of now cookie expiry is limited to 90 days. var domain_string = valid_domain ? ("; domain=" + valid_domain) : ''; if (window.location.href.indexOf('https') != -1) document.cookie = cookie_name + "=" + encodeURIComponent(cookie_value) + "; max-age=" + 24 * 60 * 60 * 1 * lifespan_in_days + //24(Hrs) * 60(Mins) * 60(Secs) * 1(NanoSecs) * lifespan_in_days(No.of days) "; path=/" + domain_string + "; secure;SameSite=Lax"; else document.cookie = cookie_name + "=" + encodeURIComponent(cookie_value) + "; max-age=" + 24 * 60 * 60 * 1 * lifespan_in_days + //24(Hrs) * 60(Mins) * 60(Secs) * 1(NanoSecs) * lifespan_in_days(No.of days) "; path=/" + domain_string; } function set_cookie_lu(cookie_name, cookie_value, lifespan_in_days, valid_domain) { lifespan_in_days = 90; //As of now cookie expiry is limited to 90 days. var domain_string = valid_domain ? ("; domain=" + valid_domain) : ''; if (window.location.href.indexOf('https') != -1) document.cookie = cookie_name + "=" + encodeURIComponent(cookie_value) + "; max-age=" + 24 * 60 * 60 * 1 * lifespan_in_days + //24(Hrs) * 60(Mins) * 60(Secs) * 1(NanoSecs) * lifespan_in_days(No.of days) "; path=/" + domain_string + "; secure;SameSite=Lax"; else document.cookie = cookie_name + "=" + encodeURIComponent(cookie_value) + "; max-age=" + 24 * 60 * 60 * 1 * lifespan_in_days + //24(Hrs) * 60(Mins) * 60(Secs) * 1(NanoSecs) * lifespan_in_days(No.of days) "; path=/" + domain_string; } function get_cookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1); if (c.indexOf(name) == 0) return c.substring(name.length, c.length); } return ""; } $(function () { // var validate_regex = /^[a-zA-Z0-9_.]+@([a-zA-Z]{3,6})+.[a-zA-Z.]{2,6}$/; var pattern = /^\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b$/i; $('#popup_txtEmail').on('keypress keydown keyup paste', function () { if (window.location.href.indexOf("/sg/") > -1) { var email_cookie_Vaule = decodeURIComponent(get_cookie("sg_email_token")); } if (window.location.href.indexOf("/hk/") > -1) { var email_cookie_Vaule = decodeURIComponent(get_cookie("hk_email_token")); } else { var email_cookie_Vaule = decodeURIComponent(get_cookie("global_email_token")); } if (!pattern.test($(this).val())) { // there is a mismatch, hence show the error message if (window.location.href.indexOf("/hk/zh-cht") > -1) { $(".popup__spEmail").text("請輸入有效的電子郵件"); } else { $(".popup__spEmail").text("Please key-in valid email"); } } else if ($(this).val() != "" && email_cookie_Vaule != undefined && email_cookie_Vaule !== null && email_cookie_Vaule != "") { if ($(this).val() == email_cookie_Vaule) { $(".popup__spEmail").text("Already subscribed with this email !"); } else { $(".popup__spEmail").text(""); } } else { // else, do not display message $(".popup__spEmail").text(""); } }); $('#footer_email').on('keypress keydown keyup paste', function (event) { if (event.keyCode != 13) { if (!pattern.test($(this).val())) { // there is a mismatch, hence show the error message if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#spftrmail").text("請輸入有效的電子郵件"); } else { $("#spftrmail").text("Please key-in valid email"); } } else { $("#spftrmail").text(""); } } }); $('#footer_btn #btn-mp-submit').click(function () { var empty_count = 0; var email_val = $('#footer_email').val(); if (email_val == '' || email_val == null) { if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#spftrmail").text("請輸入有效的電子郵件"); } else { $("#spftrmail").text("Please key-in valid email"); } empty_count = empty_count + 1; } else { if (window.location.href.indexOf("/sg/") > -1) { var email_cookieVaule = decodeURIComponent(get_cookie("sg_email_token")); } if (window.location.href.indexOf("/hk/") > -1) { var email_cookieVaule = decodeURIComponent(get_cookie("hk_email_token")); } else { var email_cookieVaule = decodeURIComponent(get_cookie("global_email_token")); } // var email_cookieVaule = decodeURIComponent(get_cookie("email_token")); if (!pattern.test($('#footer_email').val())) { // there is a mismatch, hence show the error message // $("#spftrmail").text("Please key-in valid email"); if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#spftrmail").text("請輸入有效的電子郵件"); } else { $("#spftrmail").text("Please key-in valid email"); } empty_count = empty_count + 1; } else if (email_cookieVaule != undefined && email_cookieVaule !== null && email_cookieVaule != "") { if (email_val == email_cookieVaule) { $("#spftrmail").text("Already subscribed with this email !"); empty_count = empty_count + 1; } } else { $("#spftrmail").text(""); empty_count = 0; } } if ($("#spftrmail").text() == "" && empty_count == 0) { $("#popup_txtEmail").val($("#footer_email").val()); if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) { var email = $("#footer_email").val(); window.location.href = "/subscribe?email="+email; } } else return false; }); $('#footer_email').bind("keypress", function (event) { if (event.keyCode == 13) { event.preventDefault(); $("#footer_btn #btn-mp-submit").trigger("click"); } }); $('#investortyppe-others').on('keyup', function (e) { var name = $('#investortyppe-others').val(); if (name == null || name == "") { $("#sp-investortyppe-others").text("Please enter the first name."); } else if (name != "" && name.length > 20) { $("#sp-investortyppe-others").text("Length allowed are 20 characters"); } else if (name != "" && name.length <= 20) { $("#sp-investortyppe-others").text(""); } }); $('#popup_txtFirstName').on('keyup', function (e) { var name = $('#popup_txtFirstName').val(); if (name == null || name == "") { if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#popup_spFirstName").text("請輸入您的姓氏"); } else { $("#popup_spFirstName").text("Please enter the first name."); } } else if (name != "" && name.length > 20) { $("#popup_spFirstName").text("Length allowed are 20 characters"); } else if (name != "" && name.length <= 20) { $("#popup_spFirstName").text(""); } }); $('#popup_txtLastName').on('keyup', function (e) { var name = $('#popup_txtLastName').val(); if (name == null || name == "") { if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#popup_spLastName").text("請輸入您的名字"); } else { $("#popup_spLastName").text("Please enter the last name."); } // $('#spLastName').show(); } else if (name != "" && name.length > 20) { $("#popup_spLastName").text("Length allowed are 20 characters"); } else if (name != "" && name.length <= 20) { $("#popup_spLastName").text(""); } }); $('#popup_txtcompany').on('keyup', function (e) { var company = $('#popup_txtcompany').val(); //if (company == null || company == "") { // $("#popup_spcompany").text("Please enter the company"); //} if (company != "" && company.length > 100) { $("#popup_spcompany").text("Length allowed are 100 characters"); } else if (company != "" && company.length <= 100) { $("#popup_spcompany").text(""); } }); $('#myModal .sl-bx-mil').on('click', function () { var dd_val = $('#myModal .sl-bx-mil .list .selected').attr("data-value"); if (dd_val == 0) { $("#popup_sptype").text("Please select investor type"); } else if (dd_val != 0) { $("#popup_sptype").text(""); } }); $('#popup_ddlinvestortype').change(function () { var type = $('#popup_ddlinvestortype :selected').val() if (type == 0) { $("#popup_sptype").text("Please select investor type"); } else if (type != 0) { $("#popup_sptype").text(""); } }); }); $(function () { var pattern2 = /^\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b$/i; // validation for restrict key in html tags $('.valIdatehtmltags').bind('click keydown input', function (e) {/* Cross-site Scripting(27/08/2020) */ if ((e.which >= 185 && e.which <= 188) || (e.which >= 190 && e.which <= 222)) { e.preventDefault(); } }); $('.valIdatehtmltags').bind("paste", function (event) { var key = String.fromCharCode(!event.charCode ? event.which : event.charCode); var value = key; var regularExpression; var data = event.originalEvent.clipboardData.getData('Text'); regularExpression = /[<>]/; if (regularExpression.test(data)) { event.preventDefault(); return false; } }); //$('.valIdatehtmltags').bind("keypress", function (event) { // var key = String.fromCharCode(!event.charCode ? event.which : event.charCode); // var value = key; // var regularExpression; // regularExpression = /[<>]/; // if (regularExpression.test(value)) { // event.preventDefault(); // return false; // } //}); $('.valIdatehtmltags, #txt_Email,#popup_txtEmail').bind("keypress", function (event) { // restrict enter key if (event.keyCode == 13) { event.preventDefault(); return false; } }); $(document).on("click", "#myModal .sl-bx-mil", function () { var dd_val = $('#myModal .sl-bx-mil .list .selected').attr("data-value"); if (dd_val == 6) { $("#investortyppe-others").show(); } else { $("#investortyppe-others").hide(); $("#sp-investortyppe-others").text(""); } }); $('#btnpopupsubscribe').on('click', function (e) { var firstName = $("#popup_txtFirstName").val(); var lastName = $("#popup_txtLastName").val(); var email = $("#popup_txtEmail").val(); var company = $("#popup_txtcompany").val(); var region = $('#popup_ddlRegion :selected').text(); var regionval = $('#popup_ddlRegion :selected').val(); //var investorType = $('#popup_ddlinvestortype :selected').text(); //var investorTypeVal = $('#popup_ddlinvestortype :selected').val(); var investorType = $('.sl-bx-mil .list li.selected').text(); var investorTypeVal = $('.sl-bx-mil .list li.selected').attr("data-value"); var ccode = $(this).attr('data-ccode'); var valCount = 0; // if (investorType == "Others, please state.") if (investorTypeVal == 6) { investorType = $("#investortyppe-others").val(); } if (firstName == '' || firstName == null) { valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#popup_spFirstName").text("請輸入您的姓氏"); } else { $("#popup_spFirstName").text("Please enter the first name"); } } else if (firstName != "" && firstName.length > 20) { valCount = valCount + 1; $("#popup_spFirstName").text("Length allowed are 20 characters"); } else if (firstName != "" && firstName.length <= 20) { $("#popup_spFirstName").text(""); } //else // $("#popup_spFirstName").text(""); if (lastName == '' || lastName == null) { valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#popup_spLastName").text("請輸入您的名字"); } else { $("#popup_spLastName").text("Please enter the last name"); } } else if (lastName != "" && lastName.length > 20) { valCount = valCount + 1; $("#popup_spLastName").text("Length allowed are 20 characters"); } else if (lastName != "" && lastName.length <= 20) { $("#popup_spLastName").text(""); } //else // $("#popup_spLastName").text(""); //if (company == '' || company == null) { // valCount = valCount + 1; // $("#popup_spcompany").text("Please enter company name"); //} if (company != "" && company.length > 100) { valCount = valCount + 1; $("#popup_spcompany").text("Length allowed are 100 characters"); } else if (company != "" && company.length <= 100) { $("#popup_spcompany").text(""); } //else // $("#popup_spcompany").text(""); if (email == '' || email == null) { valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $(".popup__spEmail").text("請輸入有效的電子郵件"); } else { $(".popup__spEmail").text("Please key-in valid email"); } } else { if (!pattern2.test($("#popup_txtEmail").val())) { // there is a mismatch, hence show the error message valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $(".popup__spEmail").text("請輸入有效的電子郵件"); } else { $(".popup__spEmail").text("Please key-in valid email"); } } else { // else, do not display message $(".popup__spEmail").text(""); } } if (regionval == '0') { valCount = valCount + 1; $("#popup_spregion").text("Please select region"); } else $("#popup_spregion").text(""); var dd_val = $('#myModal .sl-bx-mil .list .selected').attr("data-value"); if (dd_val == 0) { valCount = valCount + 1; $("#popup_sptype").text("Please select investor type"); } else if (dd_val == 6) { // 6 for "others" var oth_val = $("#investortyppe-others").val(); if (oth_val == "") { valCount = valCount + 1; $("#sp-investortyppe-others").text("Please key-in investor type"); } else { $("#sp-investortyppe-others").text(""); } } else if (dd_val != 0) { $("#popup_sptype").text(""); $("#sp-investortyppe-others").text(""); } //if (investorTypeVal == '0') { // valCount = valCount + 1; // $("#popup_sptype").text("Please select investor type"); //} //else // $("#popup_sptype").text(""); var flag = false; if (valCount > 0) flag = 'false'; else flag = 'true'; if (flag == 'true') { $('#loadtop_2').show(); var location = window.location.href; //locat = document.location.pathname + "/Contactus"; var urlss = window.location.origin + "/api/WebApi/lssubscribedata?FirstName=" + firstName + "&LastName=" + lastName + "&Email=" + email + "&company=" + company + "&invetortype=" + investorType + "&country=" + region + "&countyCode=" + ccode + "&audience_source=Website&mx_Preferences=Insights,Market Outlook,Lighter Reads,Chart of the month,Podcast,ESG,Education,MoneyParenting,Product,Focus funds,Investment Events,Whitepaper,Webinar,Marketing campaign&MailingPreferences=6,12,11,5,4,2&subscribedURL=" + location; // locat = "/Contactus"; $.ajax({ type: 'post', url: urlss, //data: { firstName: firstName, lastName: lastName, email: email, company: company, region: region, investorType: investorType }, data: { FirstName: firstName, LastName: lastName, Email: email, company: company, invetortype: investorType, country: region, countyCode: ccode, audience_source: '', mx_Preferences: 'Insights,Market Outlook,Lighter Reads,Chart of the month,Podcast,ESG,Education,MoneyParenting,Product,Focus funds,Investment Events,Whitepaper,Webinar,Marketing campaign', MailingPreferences: '6,12,11,5,4,2', subscribedURL: location }, dataType: "json", success: function (data) { $('#loadtop_2').hide(); if (data == "OK" || data.indexOf("Already subscribed!") != -1) { var msg = ""; if (data == "OK") { msg = "Thanks for subscribing!"; //$('.popup-left-pr').hide(); $('.pop-up-de').hide(); $('.success-msg').show(); $('.pop-article .modal-header .close').addClass('thk-close') // reset form $('#footer_email').val(""); $("#popup_txtEmail").val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); // reset invester type dropdown $('.sl-bx-mil .current').text("Select investor type"); $('.sl-bx-mil .list li').removeClass('selected'); $('.sl-bx-mil .list li').removeClass('focus'); $(".sl-bx-mil .list li:first").addClass('selected'); $(".sl-bx-mil .list li:first").addClass('focus'); $("#investortyppe-others").val(""); $("#investortyppe-others").hide(); var url = window.location.href; var subject = ''; var emailLibraryName = ""; if (url.indexOf('/sg') != -1) { subject = 'welcome'; emailLibraryName = "SG Welcome email"; } else { subject = 'welcome'; emailLibraryName = "Welcome Email"; } var targeturl = window.location.origin + "/api/WebApi/lsmpsubscribebymail?Recipient=" + email + "&Subject=" + subject + "&EmailLibraryName=" + emailLibraryName; $.ajax({ type: "POST", url: targeturl, success: function (data) { console.log(data); console.log('Email to a Lead'); } }); } else if (data.indexOf("Already subscribed!") != -1) { //msg = "Oops! You are already subscribed with this email id."; //$('.warning_message_alert').show(); $('.pop-up-de').hide(); var ccode = '', curccode = ''; if (data.indexOf("-") != -1) { ccode = data.split('-')[1]; curccode = $('#popup_ddlRegion').attr('data-ccode'); if (ccode == curccode) { $('.alreadysub-p').show(); $('.alreadysub-p-existing').hide(); $('.alreadysubscribe-msg').show(); $('.pop-article .modal-header .close').addClass('thk-close') // reset form $('#footer_email').val(""); $("#popup_txtEmail").val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); // reset invester type dropdown $('.sl-bx-mil .current').text("Select investor type"); $('.sl-bx-mil .list li').removeClass('selected'); $('.sl-bx-mil .list li').removeClass('focus'); $(".sl-bx-mil .list li:first").addClass('selected'); $(".sl-bx-mil .list li:first").addClass('focus'); $("#investortyppe-others").val(""); $("#investortyppe-others").hide(); } else { var countryName = GetCountryName(ccode); $('#sub-country').text(countryName); $('.alreadysub-p').hide(); $('.alreadysub-p-existing').show(); $('.alreadysubscribe-msg').show(); $('.pop-article .modal-header .close').addClass('thk-close') // reset form } } } else { msg = data; } //$("#label_message").text(msg); //$('#message_popups').trigger("click"); //setTimeout(function () { // alert(msg); //}, 500); // alert("Form submitted successfully"); if (window.location.href.indexOf("/sg/") > -1) { // ccodeURL = "sg"; set_cookie("sg_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("sg_visits_cookie", "yes", 20, ""); } else if (window.location.href.indexOf("/hk/") > -1) { // ccodeURL = "hk"; set_cookie("hk_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("hk_visits_cookie", "yes", 20, ""); } else { // ccodeURL = "global"; set_cookie("global_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("global_visits_cookie", "yes", 20, ""); } //set_cookie("email_token", $("#popup_txtEmail").val(), 20, ""); //set_cookie("visits_cookie", "yes", 20, ""); // $("#checkAgreeSubscribe").prop("checked", false); } else alert("Something went wrong,please try again"); }, failure: function (response) { $('#loadtop_2').hide(); console.log("Failed " + response.responseText); alert("Failed " + response.responseText); }, error: function (xhr, ajaxOptions, thrownError) { $('#loadtop_2').hide(); // alert(xhr.status); if (xhr.status == 200) { $('#close_1').click(); // setTimeout(function () { alert("Form submitted successfully"); }, 500); setTimeout(function () { // alert(msg); $("#label_message").text("Thanks for subscribing!"); $('#message_popups').trigger("click"); }, 500); if (window.location.href.indexOf("/sg/") > -1) { // ccodeURL = "sg"; set_cookie("sg_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("sg_visits_cookie", "yes", 20, ""); } else if (window.location.href.indexOf("/hk/") > -1) { // ccodeURL = "sg"; set_cookie("hk_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("hk_visits_cookie", "yes", 20, ""); } else { // ccodeURL = "global"; set_cookie("global_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("global_visits_cookie", "yes", 20, ""); } $("#checkAgreeSubscribe").prop("checked", false); $('#footer_email').val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); } else { alert("Something went wrong,please try again"); } // console.log(xhr.status); // console.log(thrownError); } }); } else { console.log('//error'); } }); $('#btnpopupcancel').on('click', function (e) { $('#close_1').trigger("click"); }); function GetCountryName(ccode) { var cname = ''; if (ccode == 'cn') cname = 'China'; else if (ccode == 'global') cname = 'Global'; else if (ccode == 'hk') cname = 'Hongkong'; else if (ccode == 'id') cname = 'Indonesia'; else if (ccode == 'jp') cname = 'Japan'; else if (ccode == 'kr') cname = 'South korea'; else if (ccode == 'lu') cname = 'Luxembourg'; else if (ccode == 'my') cname = 'Malaysia'; else if (ccode == 'sg') cname = 'Singapore'; else if (ccode == 'th') cname = 'Thailand'; else if (ccode == 'tw') cname = 'Taiwan'; else if (ccode == 'us') cname = 'Americas'; else if (ccode == 'vn') cname = 'Vietnam'; return cname; } $('#btnpopupupdatesubscribe').on('click', function (e) { var firstName = $("#popup_txtFirstName").val(); var lastName = $("#popup_txtLastName").val(); var email = $("#popup_txtEmail").val(); var company = $("#popup_txtcompany").val(); var region = $('#popup_ddlRegion :selected').text(); var regionval = $('#popup_ddlRegion :selected').val(); //var investorType = $('#popup_ddlinvestortype :selected').text(); //var investorTypeVal = $('#popup_ddlinvestortype :selected').val(); var investorType = $('.sl-bx-mil .list li.selected').text(); var investorTypeVal = $('.sl-bx-mil .list li.selected').attr("data-value"); var ccode = $(this).attr('data-ccode'); var valCount = 0; // if (investorType == "Others, please state.") if (investorTypeVal == 6) { investorType = $("#investortyppe-others").val(); } if (firstName == '' || firstName == null) { valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#popup_spFirstName").text("請輸入您的姓氏"); } else { $("#popup_spFirstName").text("Please enter the first name"); } } else if (firstName != "" && firstName.length > 20) { valCount = valCount + 1; $("#popup_spFirstName").text("Length allowed are 20 characters"); } else if (firstName != "" && firstName.length <= 20) { $("#popup_spFirstName").text(""); } //else // $("#popup_spFirstName").text(""); if (lastName == '' || lastName == null) { valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $("#popup_spLastName").text("請輸入您的名字"); } else { $("#popup_spLastName").text("Please enter the last name"); } } else if (lastName != "" && lastName.length > 20) { valCount = valCount + 1; $("#popup_spLastName").text("Length allowed are 20 characters"); } else if (lastName != "" && lastName.length <= 20) { $("#popup_spLastName").text(""); } //else // $("#popup_spLastName").text(""); //if (company == '' || company == null) { // valCount = valCount + 1; // $("#popup_spcompany").text("Please enter company name"); //} if (company != "" && company.length > 100) { valCount = valCount + 1; $("#popup_spcompany").text("Length allowed are 100 characters"); } else if (company != "" && company.length <= 100) { $("#popup_spcompany").text(""); } //else // $("#popup_spcompany").text(""); if (email == '' || email == null) { valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $(".popup__spEmail").text("請輸入有效的電子郵件"); } else { $(".popup__spEmail").text("Please key-in valid email"); } } else { if (!pattern2.test($("#popup_txtEmail").val())) { // there is a mismatch, hence show the error message valCount = valCount + 1; if (window.location.href.indexOf("/hk/zh-cht") > -1) { $(".popup__spEmail").text("請輸入有效的電子郵件"); } else { $(".popup__spEmail").text("Please key-in valid email"); } } else { // else, do not display message $(".popup__spEmail").text(""); } } if (regionval == '0') { valCount = valCount + 1; $("#popup_spregion").text("Please select region"); } else $("#popup_spregion").text(""); var dd_val = $('#myModal .sl-bx-mil .list .selected').attr("data-value"); if (dd_val == 0) { valCount = valCount + 1; $("#popup_sptype").text("Please select investor type"); } else if (dd_val == 6) { // 6 for "others" var oth_val = $("#investortyppe-others").val(); if (oth_val == "") { valCount = valCount + 1; $("#sp-investortyppe-others").text("Please key-in investor type"); } else { $("#sp-investortyppe-others").text(""); } } else if (dd_val != 0) { $("#popup_sptype").text(""); $("#sp-investortyppe-others").text(""); } //if (investorTypeVal == '0') { // valCount = valCount + 1; // $("#popup_sptype").text("Please select investor type"); //} //else // $("#popup_sptype").text(""); var flag = false; if (valCount > 0) flag = 'false'; else flag = 'true'; if (flag == 'true') { $('#loadtop_2').show(); var location = window.location.href; //locat = document.location.pathname + "/Contactus"; var urlss = window.location.origin + "/api/WebApi/lssubscribeupdate?FirstName=" + firstName + "&LastName=" + lastName + "&Email=" + email + "&company=" + company + "&invetortype=" + investorType + "&country=" + region + "&countyCode=" + ccode + "&audience_source=Website&mx_Preferences=Insights,Market Outlook,Lighter Reads,Chart of the month,Podcast,ESG,Education,MoneyParenting,Product,Focus funds,Investment Events,Whitepaper,Webinar,Marketing campaign&MailingPreferences=6,12,11,5,4,2&subscribedURL=" + location; // locat = "/Contactus"; console.log(urlss); $.ajax({ type: 'post', url: urlss, //data: { firstName: firstName, lastName: lastName, email: email, company: company, region: region, investorType: investorType }, data: { FirstName: firstName, LastName: lastName, Email: email, company: company, invetortype: investorType, country: region, countyCode: ccode, audience_source: '', mx_Preferences: 'Insights,Market Outlook,Lighter Reads,Chart of the month,Podcast,ESG,Education,MoneyParenting,Product,Focus funds,Investment Events,Whitepaper,Webinar,Marketing campaign', MailingPreferences: '6,12,11,5,4,2', subscribedURL: location}, dataType: "json", success: function (data) { $('#loadtop_2').hide(); if (data == "OK" || data.indexOf("Already subscribed!") != -1) { var msg = ""; if (data == "OK") { msg = "Thanks for subscribing!"; //$('.popup-left-pr').hide(); $('.pop-up-de').hide(); $('.alreadysubscribe-msg').hide(); $('.success-msg').show(); $('.pop-article .modal-header .close').addClass('thk-close') // reset form $('#footer_email').val(""); $("#popup_txtEmail").val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); // reset invester type dropdown $('.sl-bx-mil .current').text("Select investor type"); $('.sl-bx-mil .list li').removeClass('selected'); $('.sl-bx-mil .list li').removeClass('focus'); $(".sl-bx-mil .list li:first").addClass('selected'); $(".sl-bx-mil .list li:first").addClass('focus'); $("#investortyppe-others").val(""); $("#investortyppe-others").hide(); var url = window.location.href; var subject = ''; var emailLibraryName = ""; if (url.indexOf('/sg') != -1) { subject = 'welcome'; emailLibraryName = "SG Welcome email"; } else { subject = 'welcome'; emailLibraryName = "Welcome Email"; } var targeturl = window.location.origin + "/api/WebApi/lsmpsubscribebymail?Recipient=" + email + "&Subject=" + subject + "&EmailLibraryName=" + emailLibraryName; $.ajax({ type: "POST", url: targeturl, success: function (data) { console.log(data); console.log('Email to a Lead'); } }); } else if (data.indexOf("Already subscribed!") != -1) { //msg = "Oops! You are already subscribed with this email id."; //$('.warning_message_alert').show(); $('.pop-up-de').hide(); var ccode = '', curccode = ''; if (data.indexOf("-") != -1) { ccode = data.split('-')[1]; curccode = $('#popup_ddlRegion').attr('data-ccode'); if (ccode == curccode) { $('.alreadysub-p').show(); $('.alreadysub-p-existing').hide(); $('.alreadysubscribe-msg').show(); $('.pop-article .modal-header .close').addClass('thk-close') // reset form $('#footer_email').val(""); $("#popup_txtEmail").val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); // reset invester type dropdown $('.sl-bx-mil .current').text("Select investor type"); $('.sl-bx-mil .list li').removeClass('selected'); $('.sl-bx-mil .list li').removeClass('focus'); $(".sl-bx-mil .list li:first").addClass('selected'); $(".sl-bx-mil .list li:first").addClass('focus'); $("#investortyppe-others").val(""); $("#investortyppe-others").hide(); } else { var countryName = GetCountryName(ccode); $('#sub-country').text(countryName); $('.alreadysub-p').hide(); $('.alreadysub-p-existing').show(); $('.alreadysubscribe-msg').show(); $('.pop-article .modal-header .close').addClass('thk-close') // reset form } } } else { msg = data; } //$("#label_message").text(msg); //$('#message_popups').trigger("click"); //setTimeout(function () { // alert(msg); //}, 500); // alert("Form submitted successfully"); if (window.location.href.indexOf("/sg/") > -1) { // ccodeURL = "sg"; set_cookie("sg_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("sg_visits_cookie", "yes", 20, ""); } else if (window.location.href.indexOf("/hk/") > -1) { // ccodeURL = "hk"; set_cookie("hk_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("hk_visits_cookie", "yes", 20, ""); } else { // ccodeURL = "global"; set_cookie("global_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("global_visits_cookie", "yes", 20, ""); } //set_cookie("email_token", $("#popup_txtEmail").val(), 20, ""); //set_cookie("visits_cookie", "yes", 20, ""); // $("#checkAgreeSubscribe").prop("checked", false); } else alert("Something went wrong,please try again"); }, failure: function (response) { $('#loadtop_2').hide(); console.log("Failed " + response.responseText); alert("Failed " + response.responseText); }, error: function (xhr, ajaxOptions, thrownError) { $('#loadtop_2').hide(); // alert(xhr.status); if (xhr.status == 200) { $('#close_1').click(); // setTimeout(function () { alert("Form submitted successfully"); }, 500); setTimeout(function () { // alert(msg); $("#label_message").text("Thanks for subscribing!"); $('#message_popups').trigger("click"); }, 500); if (window.location.href.indexOf("/sg/") > -1) { // ccodeURL = "sg"; set_cookie("sg_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("sg_visits_cookie", "yes", 20, ""); } else if (window.location.href.indexOf("/hk/") > -1) { // ccodeURL = "sg"; set_cookie("hk_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("hk_visits_cookie", "yes", 20, ""); } else { // ccodeURL = "global"; set_cookie("global_email_token", $("#popup_txtEmail").val(), 20, ""); set_cookie("global_visits_cookie", "yes", 20, ""); } $("#checkAgreeSubscribe").prop("checked", false); $('#footer_email').val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); } else { alert("Something went wrong,please try again"); } // console.log(xhr.status); // console.log(thrownError); } }); } else { console.log('//error'); } }); //$('#checkAgreeSubscribe').on('click', function () { // //var _pattern = /^\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b$/i; // //var email_val = $('#footer_email').val(); // //if ($('#checkAgreeSubscribe').is(":checked") && email_val != "" && email_val !=null) // //{ // // if (_pattern.test(email_val)) { // // $("#spftrmail").text(""); // //} // //} // if ($('#checkAgreeSubscribe').is(":checked") && $("#spftrmail").text() == "Please select a check box") { // $("#spftrmail").text(""); // } //}); $('#close_1').on('click', function (e) { $('.pop-up-de').show(); $('.success-msg').hide(); $('.alreadysubscribe-msg').hide(); $('.warning_message_alert').hide(); $(".pop-article .modal-header .close").removeClass("thk-close"); // clear error messages and values $('#footer_email').val(""); $("#popup_txtFirstName").val(""); $("#popup_txtLastName").val(""); $("#popup_txtcompany").val(""); $("#popup_txtEmail").val(""); $("#popup_spFirstName").text(""); $("#popup_spLastName").text(""); $("#popup_spEmail").text(""); $("#popup_sptype").text(""); $("#investortyppe-others").val(""); $("#investortyppe-others").hide(); $("#sp-investortyppe-others").text(""); // reset invester type dropdown $('.sl-bx-mil .current').text("Select investor type"); $('.sl-bx-mil .list li').removeClass('selected'); $('.sl-bx-mil .list li').removeClass('focus'); $(".sl-bx-mil .list li:first").addClass('selected'); $(".sl-bx-mil .list li:first").addClass('focus'); // $('.sl-bx-mil #popup_ddlinvestortype').removeAttr('selected').find('option:first').attr('selected', 'selected'); }); })

        • Learn
        • Play
        • Plan
        • About
        • Learn
        • Play
        • Plan
        • Act
        20 Things to Teach Your Child About Finances (5)
        What should I know as a parent?

        When we do not teach kids about money, they might fall into pitfalls such as financial dependency or a lack of self-worth in future. Hence, developing financial literacy is vital to our child’s future well-being, and here are 20 things we can teach our children about finances.

        3 min read

        What kind of money parent are you? Take our 2-min quiz to find out.

        The key to success in life is to start early. Be it at work or home, the proverb "the early bird catches the worm" applies well and keeps you ahead of the game. Isn't that the reason why you enrol your children in enrichment classes and coaching institutions? While helping your little one to acquire skills either at sports or academics is extremely important, we often overlook the necessity of financial literacy. After all, children, irrespective of their professions, will deal with money throughout their lives.

        According to financial experts and studies, by the age of seven, most children would already have grasped how money works — in Singapore, this is when they usually start handling their daily allowance at primary school.

        In addition, their attitudes towards money should also be formed by this age. This means that if you want your kids to be prudent with money, you have to teach them its value as soon as they are able to count. Here are easy ways how we, as parents, can help our children kick-start their lifetime savings habit.

        20 Things to Teach Your Child About Finances (6)

        Want to teach your children to be more financially responsible? Here are 20 things you can do.

        1.Earning

        You can begin your money parenting style by teaching your child about earning. Children as young as two to three-year-old are able to start learning this concept. Did they clean their room or make their bed? Reward them for completing the chore. Even if it's a dime in the moment, inculcate the habit of earning in your child.

        2.Savings

        As your child learns about earning money and making a livelihood, they will realise the value of different things in life. Some need more money than others and that requires you to save your earnings. Now would be a good time to bring that piggy bank home for your kids to slide in the coins. With older children, use this opportunity to open a bank account for them. It will not only help them in saving their earnings but also help multiply their savings. With a joint account, you can also keep a tab on how their money is growing and where they spend it on.

        3.Spending

        Speaking of which, your child's first financial decision would be how they choose to spend their money. Kids who've earned that money will be more mindful of how they spend it as opposed to things being handed to them. It teaches the importance of hard work. It's not necessary that your child needs to be smart every time they spend their money. They may have been saving up for a new pair of expensive sneakers or maybe a video game - things that may not seem as ‘wise’ financial decisions, but allow your child to make those decisions and learn from them.

        4.Needs vs Wants

        This brings us to another aspect of the money parenting style that you need to incorporate – your child needs to learn the difference between needs and wants before making a purchase. As a parent, educate them about the differences between needs vs wants. You then need to trust their instincts and let them make that decision - whether good or bad. After all, if you decide to make them financially responsible, your child also needs to learn about the consequences of their actions.

        5.Using Electronic Money

        The great thing about electronic money is that it is traceable, so you and your little one can keep track of where they spend their money. Instead of using cash, transfer your child's allowance to their bank account and then encourage your child to use electronic money instead of cash. This not only creates an electronic trail but also helps your child reflect on how they chose to spend their allowance that month. Use this opportunity to identify purchases that could've been avoided and how that money could be saved for something better.

        6.Teach Them About Credit

        Financial literacy isn't merely about teaching your child to earn more, but also about ensuring their ability to take credit and pay it off. As your children grow older, taking credit in the form of an education loan, home loan, personal loan from time to time will be an integral part of adulthood. Preparing them for the same can begin now. Your kid wants those new shoes but doesn't have the money to buy them immediately? Offer them credit, but at the behest that they pay back within a stipulated time. It would be a fun way to teach them about how the credit system works and can be empowering if done the right way.

        7.Teach Them About Debt

        Did you know that Generation Z has the lowest average credit card debt of all current generations? While that's great, it's also because this generation has seen parents in debt first-hand due to recessions. With the next generation, electronic money can make things intangible with no actual money to part ways from. That's why it is significant to teach them about how debt works and the consequences of taking too much of it. If you have any personal stories in this regard, don't be afraid to share it with your child. Additionally, don’t forget to keep a track of their spending habits. This is particularly true if they have a credit card of their own or are an authorised user of yours. Make sure your child understands not to bite off more than they can chew when it comes to managing money.

        8.Teach Your Child About Budgeting

        To avoid falling into debt, a great place to start would be to create a budget. Ask your child to make a note of all the expenses they've made throughout the month, and then plan the next month accordingly. For older kids, maintaining an excel sheet can be the way to go. There are multiple apps as well that allow you to record your monthly expenses and provide a detailed report on where your hard-earned money was spent.

        9.Teach Them About Banking

        If you are anything like this writer, then your experience of going to the bank can be intimidating. Whom should you speak to? What documents do you need? How do you fill that form? All these questions can be harrowing if you do not have prior experience. That's why you should start early when it comes to banking and its services. With early and mid-teens, let them go to the bank for deposits and withdrawals. Include them when you need to fill forms or let them do it under your guidance. Also, teach them about how interest works and how it can help multiply their earnings or increase their debts.

        20 Things to Teach Your Child About Finances (7)

        10.Teach Them About Investments

        Your kid is smarter than you think and also a fast learner. So, while your financial literacy started much later, avoid that mistake with your child. With money parenting style, teach them about different avenues of investments. For instance, simple options like opening a fixed deposit or a recurring deposit is a great way to teach them about multiplying their money. You can also introduce them to stocks, bonds and now even cryptocurrency. Do remember: the first step towards investing money is to learn about the risks and that's what your child needs to do. Let them do their own research and come back with questions. You can always guide them.

        11.Set Limits

        When teaching your children about money, you should set limits to make sure their mistakes are correctable. Set limits like the amounts of money they can invest without hurting their savings or other investments. Setting a limit will help them gain confidence when it comes to handling money with more realistic goals. At the end of the day, you are teaching them to be financially independent rather than making a quick buck.

        12.Let Them Fail

        While parents are the guiding light towards the child's financial literacy, they also need to understand wrong decisions and their consequences. That's why, allow your child to fail from time to time. If they choose to spend too much on a game or even food in a single day, which results in them not having money for the rest of the week, they need to learn how to deal with it.

        13.Talk About Personal Finance

        Not every home has its finances sorted perfectly. Or, at least there will be challenges related to money from time to time. Don't keep your kids in the dark about it. Kids should know about any financial hardships that the family is going through. Of course, this isn't about burdening your child about debts that you owe, but using it as an opportunity to teach them about not making the mistakes that you made.

        14.Taxation

        It was incredibly naive of us to not know much about taxation while growing up. Kids need to learn about the importance of filing taxes and a basic idea of how to do it. Not just parents but schools should make it an active part of the curriculum, especially for kids in the higher classes. Every earning citizen in nearly every country needs to pay taxes and there's little we do in this regard. You can ask your child to be a part of that process the next time you are filing taxes.

        15.Create An Emergency Fund

        Make sure your child develops the habit of having an emergency fund from which they never take out money. It could be a second bank account or a piggy bank at home that remains untouched with only deposits. If they feel tempted, show them the larger picture – the money they are saving and how it will help them later in life. This aids your child in learning more about managing their funds and saving them for rainy days.

        16.Start Developing Financial Goals

        The secret to a debt-free life is investing in the right place at the right time. And this requires having the right knowledge. That’s why, teach your kids to start identifying potential investments early on. This is particularly important for older teens looking to secure an education overseas, or those who want to enrol in expensive courses. Instead of taking an education loan, the right investment with your guidance can help them pay off their tuition fee. The key habit here is to look at the larger picture and save according to the goal in mind.

        17.Encourage Part-Time Jobs

        Older kids can take part-time jobs and contribute to their income. Encourage them to start developing a skill they are interested in, which may or not become a potential career later on. In either case, a part-time job or a side gig will teach them about entrepreneurship, money management and balancing commitments at school and work.

        18.Teach The 50/30/20 Rule

        When your child starts making a decent income, it’s time to teach them the golden 50/30/20 rule. This is the ideal way to make sure you have better financial security in the long run. This includes spending 50 percent of your income on needs, 30 percent on wants and 20 percent on savings. The concept is a basic one and you can start teaching it to your seven-year-old if you like. It’s the rule that will transform their financial decision-making abilities.

        19.Set An Example

        If you want your kids to seriously start their financial literacy, you need to create the right environment at home. Share about your savings and what you are saving for. You can also create a joint saving account for something new like a TV or home appliance where they can make a notable and tangible contribution.

        20.It’s Never Too Late

        Do you think your child is already 10 years old so he’s late to start learning about financial literacy? You’re absolutely wrong, because there is no ‘perfect’ age to learn about it! It doesn’t matter if you haven’t done it yet, you will still be at least a decade earlier than several other parents. Some children will only learn about financial literacy after entering adulthood, and it might be overwhelming. You are still better off this way.

        What Happens When You Don't Teach Kids About Money

        20 Things to Teach Your Child About Finances (8)

        While children can learn to be financially independent and responsible, kids who aren't taught such values tend to exhibit these problems.

        1. Financial Dependency

        Bad decisions around money will only cause your child to be financially dependent on others including you. Poor money skills attract debt and won't allow them to grow in life.

        2. Lack Of Self-Worth

        Lack of money can be a contributing factor towards low self-esteem. Some kids may start equating their personal worth by the figures in their bank. As a parent, you need to ensure that your kids have a healthy relationship with money.

        3. Too Much Pride

        Alternately, too much money can also lead to inflated pride that is equally bad in children. Your child needs to learn to derive happiness from moments and not money itself.

        4. Liabilities

        Bad financial decisions can attract too many liabilities not just in terms of money but in life as well. For instance, ensuring a car is serviced on time and has its parts replaced will save you from big repairs in the future. Conversely, someone who chooses to push their vehicle to its limits is just attracting that massive repair bill. Similarly, by not paying EMIs and debts before the due date, they are only attracting higher penalties and more debts in the process.

        5. Gambling

        Be it at the casino or the stock market, the greed to make a quick buck can plunge someone into gambling and losing it all. While calculated risks are understandable, you need to teach your child about the perils of gambling in the household.

        Find out your unique #MoneyParenting style and how it impacts the way you teach your kids about money. Visit eastspring.com/money-parenting for more.

        Get #MoneyParenting insights in your inbox

        Insider access to the latest content, tools and events

        Your privacy is important to us. Learn about our privacy policy and how we protect your personal details.

        Found this article useful? We think you’ll enjoy these

        An age-by-age guide to giving your child a chore-based allowance

        How I taught my child money parenting at home

        4 major financial decisions to make for a growing family

        Disclaimer

        This document is produced by Eastspring Investments (Singapore) Limited and issued in:

        Singapore by Eastspring Investments (Singapore) Limited (UEN: 199407631H)

        Australia (for wholesale clients only) by Eastspring Investments (Singapore) Limited (UEN: 199407631H), which is incorporated in Singapore, is exempt from the requirement to hold an Australian financial services licence and is licensed and regulated by the Monetary Authority of Singapore under Singapore laws which differ from Australian laws

        Hong Kong by Eastspring Investments (Hong Kong) Limited and has not been reviewed by the Securities and Futures Commission of Hong Kong.

        Indonesia by PT Eastspring Investments Indonesia, an investment manager that is licensed, registered and supervised by the Indonesia Financial Services Authority (OJK).

        Malaysia by Eastspring Investments Berhad (200001028634/ 531241-U) and Eastspring Al-Wara’ Investments Berhad (200901017585 / 860682-K).

        Thailand by Eastspring Asset Management (Thailand) Co., Ltd.

        United States of America (for institutional clients only) by Eastspring Investments (Singapore) Limited (UEN: 199407631H), which is incorporated in Singapore and is registered with the U.S Securities and Exchange Commission as a registered investment adviser.

        European Economic Area (for professional clients only) and Switzerland (for qualified investors only) by Eastspring Investments (Luxembourg) S.A., 26, Boulevard Royal, 2449 Luxembourg, Grand-Duchy of Luxembourg, registered with the Registre de Commerce et des Sociétés (Luxembourg), Register No B 173737.

        United Kingdom (for professional clients only) by Eastspring Investments (Luxembourg) S.A. - UK Branch, 10 Lower Thames Street, London EC3R 6AF.

        Chile (for institutional clients only) by Eastspring Investments (Singapore) Limited (UEN: 199407631H), which is incorporated in Singapore and is licensed and regulated by the Monetary Authority of Singapore under Singapore laws which differ from Chilean laws.

        The afore-mentioned entities are hereinafter collectively referred to as Eastspring Investments.

        The views and opinions contained herein are those of the author, and may not necessarily represent views expressed or reflected in other Eastspring Investments’ communications. This document is solely for information purposes and does not have any regard to the specific investment objective, financial situation and/or particular needs of any specific persons who may receive this document. This document is not intended as an offer, a solicitation of offer or a recommendation, to deal in shares of securities or any financial instruments. It may not be published, circulated, reproduced or distributed without the prior written consent of Eastspring Investments. Reliance upon information in this document is at the sole discretion of the reader. Please carefully study the related information and/or consult your own professional adviser before investing.

        Investment involves risks. Past performance of and the predictions, projections, or forecasts on the economy, securities markets or the economic trends of the markets are not necessarily indicative of the future or likely performance of Eastspring Investments or any of the funds managed by Eastspring Investments.

        Information herein is believed to be reliable at time of publication. Data from third party sources may have been used in the preparation of this material and Eastspring Investments has not independently verified, validated or audited such data. Where lawfully permitted, Eastspring Investments does not warrant its completeness or accuracy and is not responsible for error of facts or opinion nor shall be liable for damages arising out of any person’s reliance upon this information. Any opinion or estimate contained in this document may subject to change without notice.

        Eastspring Investments companies (excluding joint venture companies) are ultimately wholly owned/indirect subsidiaries of Prudential plc of the United Kingdom. Eastspring Investments companies (including joint venture companies) and Prudential plc are not affiliated in any manner with Prudential Financial, Inc., a company whose principal place of business is in the United States of America or with the Prudential Assurance Company Limited, a subsidiary of M&G plc (a company incorporated in the United Kingdom).

      • 20 Things to Teach Your Child About Finances (2024)
        Top Articles
        Latest Posts
        Article information

        Author: Duane Harber

        Last Updated:

        Views: 5715

        Rating: 4 / 5 (51 voted)

        Reviews: 82% of readers found this page helpful

        Author information

        Name: Duane Harber

        Birthday: 1999-10-17

        Address: Apt. 404 9899 Magnolia Roads, Port Royceville, ID 78186

        Phone: +186911129794335

        Job: Human Hospitality Planner

        Hobby: Listening to music, Orienteering, Knapping, Dance, Mountain biking, Fishing, Pottery

        Introduction: My name is Duane Harber, I am a modern, clever, handsome, fair, agreeable, inexpensive, beautiful person who loves writing and wants to share my knowledge and understanding with you.