top of page
Search
Writer's pictureThe Trackimize Team

TrackPlug Integration

Updated: Sep 28, 2022

The TrackPlug widget is an HTML embed that can be integrated by a simple copy and paste in your code component of your website or html page.

The full code is as shown below


<!DOCTYPE html>
<html lang="en" dir="ltr">
<head><meta charset="utf-8">
<title>Trackimize TrackPlug</title>
<link rel ="icon" href ="https://static.wixstatic.com/media/2c23ef_0ce03ccd6c1745629b7f5e6392a62800~mv2.gif" type ="image/x-icon">
<style> 
div{
display:flex;justify-content:center;
} 
input,button{
display:inline-block;
padding:8px;
margin-top:7px;
margin-bottom:3px;
border-radius:0px;
border:1px solid #ccc;
border-radius:10px;
} 
#butto {   
border:1px solid;   
padding:10px;   
box-shadow:1px 1px 1px #888888;   
width:153px;
}
.button span:after {   
content:"\00bb";   
position: absolute;   
opacity:0;   
top:0;   
right:-20px;   
transition:0.5s;
}
.button:hover span {   
padding-right:25px;
}
.button span {   
cursor: pointer;   
display: inline-block;   
position: relative;   
transition:0.5s;
}
.button:hover span:after {   
opacity:1;   
right:0;
} 
iframe {   
width:1323px;   
height:949px;
-webkit-transform:scale(0.5);
-moz-transform:scale(1);
-o-transform:scale(1);   
transform:scale(1);   
position: relative;   
left:0px;   
border-radius:15px;   
display: inline-block;   
overflow:hidden;
}
.diva {   
position: absolute;   
top:60px;
}
</style>
<script type="text/javascript">
functiongoto(){     
token="38cac0aa-8753-47fe-aeac-efe1d51273de"
if(token.length===36){
var x = document.getElementById("myDIV");
if(x.style.display ==="none"){     
x.style.display ="block";
}
else{     
x.style.display ="none";
}     
document.getElementById("frame").src ="https://trackimize.com/embedded-security-search-private-mobile?search="+token     
}
else if(token.length<36){
alert("SORRY YOU DO NOT HAVE ACCESS TO THIS FEATURE. PLEASE LOGIN TO trackimize.com AND FILL THE OWNERSHIP FORM.")
}
else{
alert("SORRY YOU DO NOT HAVE ACCESS TO THIS FEATURE. PLEASE LOGIN TO trackimize.com AND FILL THE OWNERSHIP FORM.")
}
}
</script>
</head>
<body>
<div>
<button class="button" style="vertical-align:middle" type=click onclick="goto()"id ="butto">
<span>8 Tools Console</span>
</button>
<br>
<br>
<div class="diva" id="myDIV" style="display:none">
<iframe src="" id="frame" scrolling="no"></iframe>
</div>
<div>
</div>
</body>
</html>


11 views0 comments

Recent Posts

See All

Comments


bottom of page