Here is what is it look like
Monster: RG017001606CN
How to use it
Copy and paste the code below into your page between the <body> and </body> tags. The buttons will appear whatever you place them.
<!--Tracking nummer invoer box.-->
<input type="text" id="YQNum" maxlength="50"/>
<!--Deze button wordt gebruikt om de script methode op te vragen.-->
<input type="button" value="TRACK" onclick="doTrack()"/>
<!--Container voor het weergeven van de tracking resultaten.-->
<div id="YQContainer"></div>
<!--Script code kan aan het eind van de pagina worden geplaatst, wacht tot de pagina volledig is geladen en dan uitvoeren.-->
<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({
//Benodigd, specificeer de container ID of content host.
YQ_ContainerId:"YQContainer",
//Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.
YQ_Height:560,
//Optioneel, selecteer vervoerder, standaard is automatische identificatie.
YQ_Fc:"0",
//Optioneel, Specificeer UI taal, standaard taal is automatisch gedetecteerd op basis van browser instellingen.
YQ_Lang:"en",
//Vereist, specificeer het nummer dat getrackt moet worden.
YQ_Num:num
});
}
</script>
Voorbeeld uitleg
YQ_ContainerId
Benodigd, specificeer de container ID of content host.YQ_Height
Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.YQ_Fc
Optioneel, selecteer vervoerder, standaard is automatische identificatie.YQ_Lang
English, 简体中文, 繁體中文, Русский, Español, Português, Français, Italiano, Deutsch, Türkçe, Čeština, 日本語, 한국어, Nederlands, Suomi, Polski, Українська, Magyar, Svenska, Қазақша, Ελληνικά, ภาษาไทย, Български, Slovenčina, Lietuvių, Română, Norsk, Shqip, Slovenščina, Српски, Azərbaycan, Dansk, Македонски.YQ_Num
Vereist, specificeer het nummer dat getrackt moet worden.
Here is what is it look like
How to use it
Copy and paste the code below into your page between the <body> and </body> tags. The buttons will appear whatever you place them.
<!--Container gebruik voor weergave tracking invoer box.-->
<div id="YQContainer"></div>
<!--Script code kan aan het eind van de pagina worden geplaatst, wacht tot de pagina volledig is geladen en dan uitvoeren.-->
<script type="text/javascript" src="//www.17track.net/externalcall.js"></script>
<script type="text/javascript">
YQV5.trackMulti({
//Benodigd, specificeer de container ID of content host.
YQ_ContainerId:"YQContainer",
//Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.
YQ_Height:560,
//Optioneel, Specificeer UI taal, standaard taal is automatisch gedetecteerd op basis van browser instellingen.
YQ_Lang:"en"
});
</script>
Voorbeeld uitleg
YQ_ContainerId
Benodigd, specificeer de container ID of content host.YQ_Height
Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.YQ_Lang
English, 简体中文, 繁體中文, Русский, Español, Português, Français, Italiano, Deutsch, Türkçe, Čeština, 日本語, 한국어, Nederlands, Suomi, Polski, Українська, Magyar, Svenska, Қазақша, Ελληνικά, ภาษาไทย, Български, Slovenčina, Lietuvių, Română, Norsk, Shqip, Slovenščina, Српски, Azərbaycan, Dansk, Македонски.
Here is what is it look like
How to use it
Copy and paste the code below into your page between the <body> and </body> tags. The buttons will appear whatever you place them.
<!--Tracking resultaat zal floated worden weergegeven met dit element.-->
<a id="YQElem1">RI111111111CN</a>
<span id="YQElem2">RI222222222CN</span>
<div id="YQElem9">RI999999999CN</div>
<!--Script code kan aan het eind van de pagina worden geplaatst, wacht tot de pagina volledig is geladen en dan uitvoeren.-->
<script type="text/javascript" src="//www.17track.net/externalcall.js"></script>
<script type="text/javascript">
YQV5.trackSingleF1({
//Benodigd, specificeer float positie element ID.
YQ_ElementId:"YQElem1",
//Optioneel, specificeer track resultaat breedte, minimum breedte 260px, standaard is 470px.
YQ_Width:470,
//Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.
YQ_Height:560,
//Optioneel, selecteer vervoerder, standaard is automatische identificatie.
YQ_Fc:"0",
//Optioneel, Specificeer UI taal, standaard taal is automatisch gedetecteerd op basis van browser instellingen.
YQ_Lang:"en",
//Vereist, specificeer het nummer dat getrackt moet worden.
YQ_Num:"RI111111111CN"
});
YQV5.trackSingleF1({
YQ_ElementId:"YQElem2",
YQ_Width:470,
YQ_Height:560,
YQ_Fc:"0",
YQ_Lang:"en",
YQ_Num:"RI222222222CN"
});
YQV5.trackSingleF1({
YQ_ElementId:"YQElem9",
YQ_Width:470,
YQ_Height:560,
YQ_Fc:"0",
YQ_Lang:"en",
YQ_Num:"RI999999999CN"
});
</script>
Voorbeeld uitleg
YQ_ElementId
Benodigd, specificeer float positie element ID.YQ_Width
Optioneel, specificeer track resultaat breedte, minimum breedte 260px, standaard is 470px.YQ_Height
Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.YQ_Fc
Optioneel, selecteer vervoerder, standaard is automatische identificatie.YQ_Lang
English, 简体中文, 繁體中文, Русский, Español, Português, Français, Italiano, Deutsch, Türkçe, Čeština, 日本語, 한국어, Nederlands, Suomi, Polski, Українська, Magyar, Svenska, Қазақша, Ελληνικά, ภาษาไทย, Български, Slovenčina, Lietuvių, Română, Norsk, Shqip, Slovenščina, Српски, Azərbaycan, Dansk, Македонски.YQ_Num
Vereist, specificeer het nummer dat getrackt moet worden.
Here is what is it look like
How to use it
Copy and paste the code below into your page between the <body> and </body> tags. The buttons will appear whatever you place them.
<!--Enkele nummer invoer, tracking resultaat zal floated worden weergegeven met dit element.-->
<input type="text" id="YQNum" maxlength="50"/>
<!--Deze button wordt gebruikt om de script methode op te vragen.-->
<input type="button" value="TRACK" onclick="doTrack()"/>
<!--Script code kan aan het eind van de pagina worden geplaatst, wacht tot de pagina volledig is geladen en dan uitvoeren.-->
<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.trackSingleF2({
//Benodigd, specificeer float positie element ID.
YQ_ElementId:"YQNum",
//Optioneel, specificeer track resultaat breedte, minimum breedte 260px, standaard is 470px.
YQ_Width:770,
//Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.
YQ_Height:560,
//Optioneel, selecteer vervoerder, standaard is automatische identificatie.
YQ_Fc:"0",
//Optioneel, Specificeer UI taal, standaard taal is automatisch gedetecteerd op basis van browser instellingen.
YQ_Lang:"en",
//Vereist, specificeer het nummer dat getrackt moet worden.
YQ_Num:num
});
}
</script>
Voorbeeld uitleg
YQ_ElementId
Benodigd, specificeer float positie element ID.YQ_Width
Optioneel, specificeer track resultaat breedte, minimum breedte 260px, standaard is 470px.YQ_Height
Optioneel, specificeer tracking resultaat height, maximale height 800px, standaard is 560px.YQ_Fc
Optioneel, selecteer vervoerder, standaard is automatische identificatie.YQ_Lang
English, 简体中文, 繁體中文, Русский, Español, Português, Français, Italiano, Deutsch, Türkçe, Čeština, 日本語, 한국어, Nederlands, Suomi, Polski, Українська, Magyar, Svenska, Қазақша, Ελληνικά, ภาษาไทย, Български, Slovenčina, Lietuvių, Română, Norsk, Shqip, Slovenščina, Српски, Azərbaycan, Dansk, Македонски.YQ_Num
Vereist, specificeer het nummer dat getrackt moet worden.