DevOps
Linux Systems Engineer
- Joined
- Oct 18, 2019
- Messages
- 199
- Reaction score
- 18
- Points
- 18
- Location
- Novosibirsk, Russia
- Website
- addons.vevioz.com
Offline
Place the following code on your site, under the <head> tag:
Once placed, pass your site url to the function, example:
Code:
<script>
function OpenWindow(url, windowName) {
newwindow = window.open('https://www.vevioz.com/sharer?url=' + url, windowName, 'height=600,width=800');
if (window.focus) {
newwindow.focus();
}
return false;
}
</script>
Once placed, pass your site url to the function, example:
Code:
<button onclick="OpenWindow('http://yoursite.com/')">Click me</button>