Categories
Creative blog

5 important blogging tips for college students

For a collage student, blogging tips are very important who write in blog. Most of the time they spend their time by researching rather attend classes. We could not have imagined that blogging will become a major way for making money. In the recent years there are incredible increase in the number of bloggers specially […]

Categories
jQuery

Autosize: dynamic textarea sizing plugin

Autosize is a small jQuery plugin that allow textarea autosize making height dynamically so that it expands as based on visitor input. You can implement textarea autosize by calling the .autosize() method on any textarea element. Example of textarea autosize: $(‘textarea’).autosize(); For implementation autosize in your website you need to follow below steps: Include jQuery […]

Categories
Creative blog Technology

5 Free Tools For Real Time Website Visitors Tracking

Use these 5 online free tools for real time website statistics and how many visitors are on your website right now. Website visitor tracking software basically works by installing a script on your site which collects the website visitor data directly. Website Visitor Behavior Tracking Software. Web site visitor tracking gives us detailed understanding of […]

Categories
jQuery

Parse json data with jquery

jQuery parseJSON() takes a well formed JSON string and then returns the resulting JavaScript value. Prior to jQuery 1.9 version, $.parseJSON returned null value rather than throwing an error if this was passed an empty string, null, or undefined, even though those are not valid JSON. Here are some basic things about JSON: JSON is […]

Categories
WordPress

Top 5 most popular wordpress plugins

Are you looking for the most popular WordPress plugins used by WordPress experts? Good, you’re in the right place now. Here, in this article, we have discussed the best WordPress plugins for using. Choosing the best WordPress plugin for your site will help to make your website load faster and deliver a better solution for […]

Categories
jQuery

Download a HTML content as pdf using javascript – jsPDF

Using jsPDF library, you can download the div containing graphs, tables, contents as a PDF. This is a HTML5 client-side solution for generating PDFs. Simply include library in your <head>, generate your PDF using the many built-in functions, then create a button to trigger the download. <script type=”text/javascript” src=”http://cdnjs.cloudflare.com/ajax/libs/jspdf/0.9.0rc1/jspdf.min.js”></script> Create a object: var doc = […]

Categories
Technology

Web 2.0 vs Web 3.0 – Know the Difference

The term Web 3.0 i.e. semantic Web describes the sites where computers will be generating raw data on their own i.e. the next logical step in the evolution of the Internet. Let’s see the difference between Web 1.0 vs Web 2.0 vs Web 3.0. Web 1.0 Web 1.0 sites are basically content driven and the […]

Categories
Javascript

Difference between call and apply in JavaScript

One of the very common thing which confuse you while writing JavaScript is knowing when to use “call” and when to use “apply”. Let’s look at following example: var person1 = {name: ‘John’, age: 52, size: ‘2X’}; var person2 = {name: ‘Jane’, age: 26, size: ‘5X’}; var sayHello = function(){ alert(‘Hello, ‘ + this.name); }; […]

Categories
Javascript jQuery

Difference between window.location.href and location.reload

window location href and location reload() both redirects a page to a new page but there are some difference to follow. Here is the difference between window.location.href and location.reload: window.location.href is not a method. It is a property which will tell you the current URL location of the browser. Changing the value of the property […]

Categories
Php

PHP4 vs PHP5 | Difference between PHP4 and PHP5

PHP, Hypertext Preprocessor is a Open Source Language which is trend in the 20th century for creating and developing fast and dynamic web pages. This is also Server Side Scripting Language with a powerful tool for creating dynamic web pages. Lets see the difference between PHP version 4 and 5. Here is the difference between […]