Live Chat

Our Blogs

Our every actions and thoughts.


Warning: Undefined variable $title in /var/customers/webs/hostspac/web/pages/blogs/index.php on line 13


Deprecated: preg_split(): Passing null to parameter #3 ($limit) of type int is deprecated in /var/customers/webs/hostspac/web/includes/functions/sbfuncs.php on line 203
js June 3, 2020, 02:37 AM
/* * NewsTicker Plugin v1.0. * Copyright(c) 2009 Host Spacer Pvt. Ltd. * Contact us at info@hostspacer.com * Author: Shivasis Biswal (Krushna) * Usage: * $(document).ready(function(){ * $('#ticker').newsticker(); * }); * */ ;(function ($)...
js June 1, 2020, 11:29 AM
/* * cookieAlert Plugin v1.0. * Copyright(c) 2009 Host Spacer Pvt. Ltd. * Contact us at info@hostspacer.com * Author: Shivasis Biswal (Krushna) * Usage: * $(document).ready(function(){ * $('body').cookieAlert(); * }); * Themes: dark,...
php May 28, 2020, 07:42 PM
function estimated_reading_time( $content = '', $wpm = 250 ) { $clean_content = strip_tags( $clean_content ); $word_count = str_word_count( $clean_content ); $time = ceil( $word_count / $wpm ); ...
domain May 28, 2020, 04:21 PM
You have thought about everything for your website: your website theme and the domain name. You visit a hosting provider website and there you are presented with a list of top-level...
js May 28, 2020, 10:19 AM
/* * SimpleTooltip v.1.0 * Copyright(c) 2009 Host Spacer Pvt. Ltd. * Contact us at info@hostspacer.com * */ ;(function($){ 'use strict'; var defaults = { trigger: 'hover', place: 'auto', theme: 'dark', width: 200, tooltip: 'simple-tooltip', arrow: true, single: true, ajax: false, action:...
js May 28, 2020, 06:33 AM
// small tooltip $(document).ready(function(){ $('.smalltip').hover(function(e){ var titleText = $(this).attr('title') || $(this).attr('data-smalltip'); $(this).data('tiptext', titleText).removeAttr('title'); $('') .text(titleText) .appendTo('body') ...