pls find below the script below ...
I want to insert a link on the url variable !
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function ($) {
$(".to-lock-1").sociallocker({
text: {
header: "<center>The content is locked!</center>",
message: "<center></br>Please support us, click like button below to download the Wallpaper.</center>"
},
theme: "starter",
locker: {
close: false,
timer: 0
},
buttons: {
order: ["facebook-like", "twitter-tweet", "twitter-follow", "google-plus", "linkedin-share"]
},
facebook: {
appId: "206841902768508",
like: {
title: "Like us",
url: "https://www.facebook.com/9H9Gang"
}
},
twitter: {
tweet: {
title: "Tweet",
text: "PHPGang Programming Blog, Tutorials, jQuery, Ajax, PHP, MySQL and Demos.",
URL: "http://www.phpgang.com/"
},
follow: {
title: "Follow us",
url: "http://twitter.com/phpgang"
}
},
google: {
plus: {
title: "Plus +1",
url: "http://www.phpgang.com/"
}
},
linkedin: {
url: "http://www.phpgang.com/",
share: {
title: "Share"
}
}
});
});
I want to change the URL: "http://www.phpgang.com/ to URL: "<?php the_permalink(); ?>
I'm using this script to lock a part of a content on my wordpress blog!`
twitter: {
tweet: {
title: "Tweet",
text: "PHPGang Programming Blog, Tutorials, jQuery, Ajax, PHP, MySQL and Demos.",
URL: "http://www.phpgang.com/"
},
follow: {
title: "Follow us",
url: "http://twitter.com/phpgang"
}
}