top of page

Add a Title

Add a Title
Published Date
{postDate}
Tags
0 Comments
Views
Share Post

Comment

successMessage

errorMessage

Add a Title

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.

No comments yet. Be the first to comment!"
01 //
NEWS & UPDATES

Related Posts

Category

{publishedDate}

{postTitle}

{postParagraph}

Start Now
Category

{publishedDate}

{postTitle}

{postParagraph}

Start Now
Category

{publishedDate}

{postTitle}

{postParagraph}

Start Now

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