Live Chat

Our Blogs

Our every actions and thoughts.


Warning: Undefined variable $title in /var/www/vhosts/hostspacer.com/httpdocs/pages/blogs/index.php on line 13

js June 3, 2020, 08:07 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, 04:59 PM
/* * 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 29, 2020, 01:12 AM
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, 09:51 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, 03:49 PM
/* * 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, 12:03 PM
// 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') ...