Track Button

This tracking widget allows site visitors to enter a tracking number to track shipment.

Get Code

Include the follow javascript code on your page, between the <head> and </head> tags. Copy

<script type="text/javascript" src="//s.tracktry.com/tracktry/js/button/button.js"></script>
<script type="text/javascript">
function TTsizeSet() {
    return {
        //Optional, Specify Single number input size, large or normal, default normal.
        size:"normal",
        //Optional, Specify Single number input width, e.g. 400px,75%, default 75%.
        width:"75%"
    };
}
</script>

Copy and paste the code below into your page between the <body> and </body> tags.The buttons will appear whatever you place them Copy

<div id="TTinput" class="TTinput">
    <div class="TTinput-item">
        <input id="TTtracknumber" type="text" value="" name="TTtracknumber" placeholder="Enter your tracking number">
    </div>
    <button class="TTinput-button" onclick="TTbuttonToTrack()">Track</button>
</div>