90%
top of page

Add a Title

Add a Title
Published Date
Published Date
Tags
0 Comments
Views
Share Post

Comment

successMessage

errorMessage

Add a Title

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

No comments yet. Be the first to comment!"

Related Posts

Start Now
Start Now

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

Start Now
Start Now

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

Start Now
Start Now

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

Add a Title

  • Writer: @lan Design
    @lan Design
  • Dec 31, 2023
  • 1 min read

Social Media

import wixLocation from 'wix-location';
import wixWindow from 'wix-window';

$w.onReady(function () {

    let siteUrl = wixLocation.url;

    $w("#facebookShare").link = `https://www.facebook.com/sharer.php?u=${siteUrl}`;
    $w("#twitterShare").link = `https://twitter.com/intent/tweet?url=${siteUrl}`;
    $w("#pinterestShare").link = `http://pinterest.com/pin/create/button/?url=${siteUrl}`;
    $w("#linkedInShare").link = `https://www.linkedin.com/sharing/share-offsite/?url=${siteUrl}`;

    //TRIGGER URL BOX
    $w("#urlTrigger").onClick(() => {

        $w("#urlBox").collapsed ? $w("#urlBox").expand() : $w("#urlBox").collapse();

    });

    //ADD URL TO BUTTON LABEL
    $w("#urlButton").label = siteUrl;

    //COPY TO CLIPBOARD
    $w("#urlButton").onClick(() => {

        wixWindow.copyToClipboard(siteUrl).then(() => {

            $w("#urlButton").label = `Recipe URL copied!`

            setTimeout(() => {

                $w("#urlButton").label = siteUrl;

            }, 1000);

        })

    })

});

Have fun!

Comments


bottom of page