Track Your Order
<div style="text-align: center;">Enter your tracking number here to see your order status.</div>
<br />
<div style="text-align: center;"><input type="text" id="YQNum" maxlength="50" style="width: 60%;" placeholder="Tracking Number" /> <input type="button" id="button1" style="width: 100px; background-color: #000000; color: transparent; text-shadow: 0 0 0 white;" value=" Track" onclick="doTrack()" /></div>
<div style="text-align: center;">For shipping & delivery information, please <a href="https://solobook-prints.myshopify.com/pages/shipping-policy">click here </a></div>
<script text="text/javascript">// <![CDATA[
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
};
var VARIABLE = getUrlParameter('tracking');
if (VARIABLE != null) {
document.getElementById('YQNum').value = VARIABLE;
}
// ]]></script>
<div id="YQContainer"></div>
<!--Script code can be put in the bottom of the page, wait until the page is loaded 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("Please enter your tracking number.");
return;
}
YQV5.trackSingle({
//Required, Specify the container ID of the carrier content.
YQ_ContainerId:"YQContainer",
//Optional, specify tracking result height, max height 800px, default is 560px.
YQ_Height:560,
//Optional, select carrier, default to auto identify.
YQ_Fc:"0",
//Optional, specify UI language, default language is automatically detected based on the browser settings.
YQ_Lang:"en",
//Required, specify the number needed to be tracked.
YQ_Num:num
});
}
// ]]></script>