Developer

Share Plugin

Use the Vevioz Share Plugin to open the Vevioz share window from your own website with a single helper function.

  1. Place the following code on your site under the <head> tag:

    <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>

  2. After that, pass your page URL to the function. Example:

    <button onclick="OpenWindow('http://yoursite.com/')">Click me</button>

  3. Live test: