If you would like to: access, correct, amend or delete any personal information we have about you, register a complaint, or simply want more information contact our Privacy Compliance Officer at support@jinxuanhome.com.
 
<div class="container mt__60 mb__60">
    <div style="margin-top: 10px; margin-bottom: 20px;">
        <!-- Tracking number input box -->
        <input style="width: 100%; height: 57px; padding: 10px; border: 1px solid #ccc; border-radius: 4px;" maxlength="50" id="YQNum" placeholder="Enter your number" type="text" class="Form__Input"> 
        
        <!-- Button to call script method -->
        <input value="TRACK" type="button" style="background: #000; border-radius: 4px; width: 100%; height: 50px; margin-top: 10px; color: #fff; cursor: pointer;" class="Button" onclick="doTrack()"> 
        
        <!-- Container to display the tracking result -->
        <div id="YQContainer" style="margin-top: 20px;"></div>
        
        <!-- Script code can be put in the bottom of the page -->
        <script type="text/javascript" src="//www.17track.net/externalcall.js"></script> 
        <script type="text/javascript">
            function doTrack() {
                var num = document.getElementById("YQNum").value;
                if(num === "") {
                    alert("Enter your number.");
                    return;
                }
                YQV5.trackSingle({
                    YQ_ContainerId: "YQContainer", // Required
                    YQ_Height: 560, // Optional
                    YQ_Fc: "0", // Optional
                    YQ_Lang: "en", // Optional
                    YQ_Num: num // Required
                });
            }
        </script>
    </div>
</div>