// turns off sharing links when editing
function editCurrent(url) {
window.location.href = url;
}
function deleteBlogEntry(blogid, blogentid, msgid) {
var link = '/aspx/blob2/admin/blogs/blogsdeleteBlogEntry.aspx?blogid=' + blogid + '&blogentid=' + blogentid + '&msgid=' + msgid;
location.href = link;
return;
}
function deleteBlog1Entry(blogid, blog1blogid, blogentid, msgid) {
var link = '/aspx/blob2/admin/blogs/blogsdeleteBlogEntry.aspx?provider=blog1&blogid=' + blogid + '&blog1blogid=' + blog1blogid + '&blogentid=' + blogentid + '&msgid=' + msgid;
location.href = link;
return;
}
function deleteBlogComment(blogid, blogcommentid) {
var result = confirm("Are you sure you want to delete this blog entry comment?");
if (result) {
$('#ctl21_ctl03_ctl00_hf_FormAction').attr("value", "DELCOM|" + blogid + "|" + blogcommentid);
doAsyncPostback();
}
return result;
}
function scrollToAnchor(aid) {
var aTag = $(aid);
$('html,body').stop().animate({ scrollTop: aTag.offset().top - 100 }, 2500, 'easeInOutExpo');
}
$(document).ready(function () {
$(window).resize();
var commentid = 0;
var blogentryid = 'bf0af369-af80-4dd0-b68b-10e4cc1ea423';
if (blogentryid.length > 1) {
$('#liEditArticle').fadeIn('fast', function () {
$('#liRemoveArticle').fadeIn('fast');
});
if ('c2e789eb-c6ec-4041-8fa1-099a49f8e278' != '') {
setTimeout(function () {
getArticleViews();
}, 10);
}
}
else if ('c2e789eb-c6ec-4041-8fa1-099a49f8e278' != '') {
setTimeout(function () {
getArticleViews();
}, 10);
}
else {
//do nothing
}
setTimeout(function () {
if ($('#disqus_comments_script_wrapper').length > 0) {
$('body').append($('#disqus_comments_script_wrapper'));
}
}, 12);
//var blogEntryDetail = $('#blog-entry-detail').length;
//if (blogEntryDetail == 1) {
// // we are showing an article
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parent().show();
// $('a.btn-blog-action[data-target="remove"]').parent().show();
//}
//else {
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parents().closest('li').hide();
// $('a.btn-blog-action[data-target="remove"]').parents().closest('li').hide();
// alert('noshow');
//}
//var bview = getCurrentView();
//setTimeout(function () {
// switch (bview) {
// case "article": {
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parents().closest('li').show();
// $('a.btn-blog-action[data-target="remove"]').parents().closest('li').show();
// break;
// }
// default: {
// $('.blog-button-wrapper').show();
// //$('.blog-button-wrapper').css('display','block');
// $('a.btn-blog-action[data-target="edit"]').parents().closest('li').hide();
// $('a.btn-blog-action[data-target="remove"]').parents().closest('li').hide();
// }
// }
//}, 1000);
});// end doc.ready
$(window).resize(function () {
//setPageLayout();
setTimeout(function () {
// blog1 snippet...
if ($('body').find('#summary-masonry').length > 0) {
// this was a jquery method thats been lost or deprecated
// from unify that created the masonry view. since we're
// transitioning from Bootstrap3 to Bootrap4 before we update
// unify to b4 version...hide the masonry view.
// no one was using it on live but us.
//gridBoxesOnDemand();
}
}, 200);
});
$('body').on('click', '.blog-action', function (e) {
var target = $(this).attr('data-target')
switch (target) {
case "add": {
disableBackground("body", false, 0, 0, 0, 0)
break;
}
case "edit": {
disableBackground("body", false, 0, 0, 0, 0)
break;
}
}
});
$('body').on('click', 'a.blog1-tag', function (e) {
e.preventDefault();
e.stopPropagation();
doTagLookup($(this).text().trim());
});
$('body').on('click', 'a.blog1-category', function (e) {
e.preventDefault();
e.stopPropagation();
doCatLookup($(this).text().trim());
});
function doCatLookup(inval) {
try {
$.ajax({
type: 'POST',
url: '/aspx/Blob2/Blobs/BlobWebService.aspx/GetCatUrl',
data: '{"originalid":"122991","category":' + JSON.stringify(inval) + '}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
cache: false,
success: function (response) {
if (response.d.length > 0) {
window.location.assign(response.d);
}
else {
window.location.assign("/blog1/category/unknown");
}
},
failure: function (response) {
},
error: function (response) {
}
});
}
catch (err) {
}
}
function doTagLookup(inval) {
try {
$.ajax({
type: 'POST',
url: '/aspx/Blob2/Blobs/BlobWebService.aspx/GetTagUrl',
data: '{"originalid":"122991","tag":' + JSON.stringify(inval) + '}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
cache: false,
success: function (response) {
if (response.d.length > 0) {
window.location.assign(response.d);
}
else {
window.location.assign("/blog1/tag/unknown");
}
},
failure: function (response) {
},
error: function (response) {
}
});
}
catch (err) {
}
}
$(function () {
if ($('#anchor_FBStatus').length >= 1) {
$('#anchor_FBStatus').popover();
$('#anchor_TWStatus').popover();
$('#anchor_FBStatus').click(function (e) {
$('.popover-title').append('
');
$(this).popover();
});
$('#anchor_TWStatus').click(function (e) {
$('.popover-title').append('
');
$(this).popover();
});
$(document).click(function (e) {
if (e.target.id == "popovercloseid1") {
$('#anchor_FBStatus').popover('hide');
}
if (e.target.id == "popovercloseid2") {
$('#anchor_TWStatus').popover('hide');
}
});
}
});
function doAsyncPostback() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl21$ctl03$ctl00$lb_Async", "");
}, 1);
}
function getTempKey() {
return 'ab6d298c-c0d3-48ff-a3bf-e8b9be8af797';
}
function getTalkspotBlogId() {
return 188319;
}
function doAddArticle() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl21$ctl03$ctl00$btnAddArticle", "");
}, 1);
}
function doEditArticle() {
//ff-bug #325 fix
setTimeout(function () {
__doPostBack("ctl21$ctl03$ctl00$btnEditArticle", "");
}, 1);
}
function doRemoveArticle() {
$("#ctl21_ctl03_ctl00_btnDeleteArticle").click();
}
function getCurrentView() {
return $('#ctl21_ctl03_ctl00_hf_FormAction').val();
}
- 7/5/2018
- Talkspot Administrator
- 814 views
Talkspot's #1 goal is to empower our customers, many of whom are non-techies, to create websites (and blogs) that look like they cost many thousands of dollars to produce.
As part of that effort we are thrilled to announce the addition of two new widgets that can be added to any Talkspot website in seconds. We think you will agree that they look outstanding on both desktop computers and mobile devices and are a great way to add some sizzle to your website.
The Cards widget:
This is a very flexible widget that showcases one image and a small amount of text. If you are a home-builder, you can use it to showcase homes you've built. Artists can use it to showcase their art. There are hundreds of ways to use it! You can display a single "card" or many, in a wide variety of formats and colors.
The cards widget doesn't just look good. It can be used as a method of navigating your website, or for linking to other websites. It makes a great "teaser" for highlighting content on your website.

Want a display like this for your site? This is only one of MANY options
Check out these examples to see what we mean: http://examples.talkspot.com/cards
- 24 great looking templates offer plenty of fun ways to display content
- 1, 2, 3 and 4 up configurations
- Control font size and color
- Control background colors
- Add titles and descriptions
- Add buttons to link cards to pages on your website or external websites
- Social Media links for users to share your web-page
And, The Quotes Widget:
Nothing is more effective on a website than sharing the great things your customers say about you. We make it easy for you to add reviews of your products or services to your website in a way that really showcases them well. Once you add these to your site you can experiment with an infinite variety of ways to display them. We want your site to look good, and we also want to make the experience of adding content fun!

One of the many options you can use to showcase reviews of your products
Check out these examples and try it yourself: http://examples.talkspot.com/quotes
- 9 stunning templates to choose from
- 1, 2, 3 and 4 up configurations
- Page-able templates
- Control font size and color
- Control background colors
- Set captions
- Manage star ratings
We encourage you to try these great new features out on your website. Feel free to reach out to us with questions and/or feedback.
Thank you,
Talkspot Team