Categories
Javascript

Getting Started with Handlebars JS

Handlebars js is a popular templating engine which is simple to use, powerful and has a large community based on the Mustache template language. Using this, you can write cleaner code and separate the generation of HTML from the rest of your JavaScript. Written in JavaScript language, Handlebars JS is a compiler which takes any […]

Categories
Creative blog Technology

How to Request for Testimonials

For your business, request for testimonials from previous clients is a powerful marketing tools and here is how you can ask to them for testimonials. It’s just on your website where some of your client’s good testimonials can lead your business a new success and positive results. In today’s social marketing business environment, this lets […]

Categories
Creative blog

List of Blogs that Accept Guest Posts

One of the finest methods for obtaining backlinks to your blogs and generating income is guest posting or creating blogs. The advantage is that the backlinks are of a high caliber and can allow you to improve your domain authority and rank higher. It is better known as content marketing. The majority of blogs are featured based on […]

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

Select an element with multiple classes in jQuery

The basic concept of jQuery is to select one or more elements using element ID, Class, Attribute, Compound CSS Selector and do something with them. Let’s see how to select an element with multiple classes. For simple selection you can use following code as below. Selecting Elements by ID: $( “#Id” ); Selecting Elements by […]

Categories
WordPress

Show related posts in WordPress without any plugin

You can show related posts in WordPress without any plugin and this will reduce your loading fast. Using a simple code you can get related posts in WordPress. Simply write the below code and put this code anywhere you want to show on your website. Example of related posts: <?php $tags = wp_get_post_tags($post->ID); if ($tags) […]