Learn how to Money Parent: A guide for Asian parents (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
        Learn how to Money Parent: A guide for Asian parents (5)

        6 min read

        What is money parenting?

        All parents know that at some point we have to start teaching our children about money. But when? How? Do we even know enough to teach them? Read on for some useful tips to teach your children the basics of money and improve your own knowledge in this area.

        6 min read

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

        Ever heard of the term money parenting? Don’t raise an eyebrow just yet, we aren’t talking about spoiling your children or making every life lesson about money! But before we explain, let me tell you a quick story.

        I am a 35-year old mum of three who believes that it is extremely important to instill good money practices in children. As such, we've started them on the journey as young as three. It's really exciting watching the children learn from each other!

        When I was a little girl, my father used to share with me a quote from Charles Dickens’ David Copperfield. It goes something like, “When your income is $20 and spending is $19.98, the result is happiness. When your income is $20 and spending is $20.02, the result is misery”.

        He drilled this into me when I made a juvenile attempt at ‘leveraging’ the spending power of my primary school allowance. You see, there was something I really wanted from the school bookshop! Instead of caving in to my pleading, he offered me a few options.

        1. Save your money and buy it when you can afford it
        2. Give up spending your allowance on something else
        3. Receive a small top up according to how you much save every week
        4. Work for extra allowance! (meaning helping out with household chores)

        And no, reaching into those festive hong baos was not even an option. Those were apparently savings for rainy days — whatever that meant. At the age of 8, I didn’t quite understand.

        I wondered why it was a big deal for him to give me some extra funds when he clearly wasn’t short of them. But as I grew up, I understood. Now that I’m a full blown adult with bills to pay and children to raise, I am so thankful for those early lessons on finances!

        Learn how to Money Parent: A guide for Asian parents (6)

        What does money parenting mean?

        Money parenting is the process of educating children on the financial and social responsibilities that come with money.

        It’s a way for us parents to pass on our attitudes and beliefs about finance to our children in the hope that this will have an effect on their financial outcomes.

        Why is money parenting important?

        It’s important to talk to children about money. Managing money is something that everyone has to do. It starts as early as managing that recess allowance in school so there’s no running away from it.

        Having money management skills will have extraordinary benefits when your child is old enough to have actual money issues to worry about.

        Talking to your children about money and instilling the right practices from a young age is one way to ensure your child knows how to manage their finances. What you really are doing is preparing them for their future.

        What matters to parents?

        Eastspring Investments conducted a survey among 10,000 participants in 9 Asian Countries — the Asia Money Parenting survey — and found that 95% of parents believe it is very important to teach their child to use and manage money.

        However, when it comes to money parenting, the average confidence index of parents, stands at 0.65 (with 1 being completely confident). Some of their concerns include:

        • not knowing how to deliver successful money parenting
        • wanting more knowledge, insight and tools to help them provide better advice to their children
        • wanting to know what others are doing, so that they can learn and share successful teaching tips
        • wanting to improve their own financial knowledge in order to provide the right guidance for their children

        As a result, they often end up not knowing how successful they are, especially when there are no real metrics to measure their money parenting efforts.

        5 Tips for money parenting

        Based on expert advice, here are some tips to give you a head start in money parenting.

        Learn how to Money Parent: A guide for Asian parents (7)

        1.Start Early

        Research shows that a good age to start would be when your child turns 31. By the time they are 4 or 5, you can explain the importance of good spending habits and by 7, you can get them started on a savings account.

        2.Lead by Example

        You are your child’s first and best teacher so even if you are earning comfortably, don’t go overboard2 with extravagant spending. Set a healthy example about paying bills on time and keeping spending in check.

        3.Start Small

        Start your children off with small amounts of pocket money3 and help them appreciate the effort of obtaining more money and understanding the constraints of the amount they have. This will also teach them how to stretch that dollar.

        4.Make Them Work For It

        You don’t want your children growing up wondering why they suddenly have to work for something that was once free. Instead of giving them free pocket money, even a simple thing like having them set the dinner table to ‘earn’ their pocket money goes a long way. Children who work for their money value the reward4. This will also help to eradicate their fantasy that money grows on trees or falls from the sky!

        5.Help Them Save & Grow Their Savings

        When they are really young, start with the piggy bank and guide them to deposit something into it as often as possible. As they enter primary school, start a savings account and show them how it works.

        You can even introduce the concept of ‘investment’ by topping up a certain amount for every, say, $50 that they save. You can further build on this by introducing them to compound interest as they enter their pre-teen years.

        As always, it’s important to lead by example so have your own savings jar and let them watch you deposit money into it. When out shopping, teach them to make wise choices and discern between various prices5.

        Expert help

        These are some tips to get started but there is no one-size-fits-all approach to money parenting. If you’d like to know more about money parenting, take our 2-min quiz to see what kind of parent you are, and receive advice that best suits your personality.

        You can also improve your own financial management knowledge by visiting the Eastspring Money Parenting site or contact them for a partner financial advisor.

        It’s never too early to start your money parenting journey. You play an important role in shaping the financial knowledge and skills your children need to be successful and happy in life!

        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

        Five fun money parenting activities for primary school kids

        All about money parenting

        Is your child your copycat?

        Footnotes

        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).

      • Learn how to Money Parent: A guide for Asian parents (2024)
        Top Articles
        How to Become an Airbnb Co-Host-2024: Step-By-Step Instructions
        [PDF] Pairs trading: A copula approach | Semantic Scholar
        English Bulldog Puppies For Sale Under 1000 In Florida
        Katie Pavlich Bikini Photos
        Gamevault Agent
        Pieology Nutrition Calculator Mobile
        Hocus Pocus Showtimes Near Harkins Theatres Yuma Palms 14
        Hendersonville (Tennessee) – Travel guide at Wikivoyage
        Compare the Samsung Galaxy S24 - 256GB - Cobalt Violet vs Apple iPhone 16 Pro - 128GB - Desert Titanium | AT&T
        Vardis Olive Garden (Georgioupolis, Kreta) ✈️ inkl. Flug buchen
        Craigslist Dog Kennels For Sale
        Things To Do In Atlanta Tomorrow Night
        Non Sequitur
        Crossword Nexus Solver
        How To Cut Eelgrass Grounded
        Pac Man Deviantart
        Alexander Funeral Home Gallatin Obituaries
        Shasta County Most Wanted 2022
        Energy Healing Conference Utah
        Geometry Review Quiz 5 Answer Key
        Hobby Stores Near Me Now
        Icivics The Electoral Process Answer Key
        Allybearloves
        Bible Gateway passage: Revelation 3 - New Living Translation
        Yisd Home Access Center
        Home
        Shadbase Get Out Of Jail
        Gina Wilson Angle Addition Postulate
        Celina Powell Lil Meech Video: A Controversial Encounter Shakes Social Media - Video Reddit Trend
        Walmart Pharmacy Near Me Open
        Marquette Gas Prices
        A Christmas Horse - Alison Senxation
        Ou Football Brainiacs
        Access a Shared Resource | Computing for Arts + Sciences
        Vera Bradley Factory Outlet Sunbury Products
        Pixel Combat Unblocked
        Movies - EPIC Theatres
        Cvs Sport Physicals
        Mercedes W204 Belt Diagram
        Mia Malkova Bio, Net Worth, Age & More - Magzica
        'Conan Exiles' 3.0 Guide: How To Unlock Spells And Sorcery
        Teenbeautyfitness
        Where Can I Cash A Huntington National Bank Check
        Topos De Bolos Engraçados
        Sand Castle Parents Guide
        Gregory (Five Nights at Freddy's)
        Grand Valley State University Library Hours
        Holzer Athena Portal
        Hello – Cornerstone Chapel
        Stoughton Commuter Rail Schedule
        Selly Medaline
        Latest Posts
        Article information

        Author: Rubie Ullrich

        Last Updated:

        Views: 6018

        Rating: 4.1 / 5 (72 voted)

        Reviews: 95% of readers found this page helpful

        Author information

        Name: Rubie Ullrich

        Birthday: 1998-02-02

        Address: 743 Stoltenberg Center, Genovevaville, NJ 59925-3119

        Phone: +2202978377583

        Job: Administration Engineer

        Hobby: Surfing, Sailing, Listening to music, Web surfing, Kitesurfing, Geocaching, Backpacking

        Introduction: My name is Rubie Ullrich, I am a enthusiastic, perfect, tender, vivacious, talented, famous, delightful person who loves writing and wants to share my knowledge and understanding with you.