Track Order

<p>Are you looking to track your order? When your order ships, you will receive a <strong>Shipping Confirmation</strong> email from <strong>xx@xxxx.com</strong> with your tracking number included. Depending on the product ordered, the mail could take up to 7 business days to be sent. Once you receive the mail, enter your tracking number below to easily check the status of your delivery.</p>

<!--Inbox for tracking number.-->

<input type="text" id="YQNum" maxlength="50" />

<!--The button is used to call the script method.-->

<input type="button" value="TRACK" onclick="doTrack()" />

<!--Container to display the trace result.-->

<div id="YQContainer"></div>

<!--The script code can be put at the bottom of the page, wait until the page loads, and then execute.-->

<script type="text/javascript" src="//www.17track.net/externalcall.js"></script>

<script type="text/javascript">// <![CDATA[

function doTrack() {

var num = document.getElementById("YQNum").value;

if(num===""){

alert("Enter your number.");

return;

}

YQV5.trackSingle({

//Required, specifies the container ID of the carrier's contents.

YQ_ContainerId:"YQContainer",

//Optional, specify the height of the tracking result, maximum height 800px, default is 560px.

YQ_Height:560,

//Optional, select the carrier, by default it is automatically identified.

YQ_Fc:"0",

//Optional, specifies the interface language, the default language is automatically detected based on the browser settings.

YQ_Lang:"is",

//Required, specifies the number that needs to be tracked.

YQ_Num:num

});

}

// ]]></script>

<h3>Things to keep in mind:</h3>

<p>Order numbers are not updated instantly with available delivery status. If your entered tracking number shows that it is currently unavailable, don't be alarmed - Your order has been shipped and is in transit to your local post office. Tracking should be updated within a few business days. Depending on the destination, the order may take 10 to 15 business days to be delivered.</p>

<p>If you see irrelevant ads in the tracking popup, we are sincerely sorry. We use a third-party order tracking service to ensure the best tracking result, so we have no way to control the ads displayed on it. Thank you for your understanding.</p>

<p>Happy shopping!</p>