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
Javascript

Date Object – JavaScript

The Date object is a datatype that is used to work with dates and times which is built into the JavaScript language. Date objects are created with the new Date() that represents a single moment in time. Once a Date object is created, you can allow a number of methods to operate on it. This […]

Categories
Javascript

Detect Browser in JavaScript

To detect browser in JavaScript, window.navigator object contains information about the user’s browser i.e. Firefox, Internet Explorer, Opera, etc. JavaScript has a standard object called navigator which contains data about user’s browser. It has a lot of properties. JavaScript window.navigator object can be written without window prefix. For example, navigator.appName navigator.appCodeName navigator.platform Browser detection is […]

Categories
Html

Embedding PDFs without JavaScript

Without JavaScript, a PDF can be embedded into HTML pages. Embedding PDFs without JavaScript is a major part in HTML. In below there are 4 examples that describes how to use this common techniques. For embedding a PDF file into a HTML document, this is an open-source standards-friendly JavaScript utility. We need to know that […]

Categories
jQuery

Differences Between jQuery .bind() vs .live() vs .delegate() vs .on()

In this article you will learn the difference between bind vs live vs delegate vs on methods for adding event handlers to elements. Developers are little bit confused about what the actual differences are between the jQuery .bind(), .live(), .delegate(), and .on() methods and how they should be used. Let’s start with some common HTML […]

Categories
Technology

LMS – A Learning Portal that Adapts to Your Changing Needs

If you’re planning on implementing an eLearning program for educational or training purposes, using the right learning management system (LMS) is crucial. After all, even the best course is futile if you don’t have an adequate platform to make it accessible. A great LMS allows you to easily store and manage your training materials, and […]

Categories
Technology

Free Online Optical Character Recognition Tools

Free Online OCR is a software which allows you to convert images, scanned PDF into editable Text, Word, Excel output formats. Optical Character Recognition or OCR is a technology which enables you to convert different types of documents like scanned paper documents, PDF files, images captured by digital camera into a editable and searchable data. […]

Categories
Business Technology

6 Ways CRM in BPO Industry Would Help Your Business

Understanding the customers these days would here require listening to all their clients and customers, resolving the one time problem. And in order to stay competitive the organizations would here require a 360 view of their clients and customers, their full history with the brand starting from the purchases to service request and every detail […]

Categories
Javascript

Deal with JavaScript and Cookies

JavaScript cookie is the most efficient method of tracking and remembering preferences, lets you store user information in small text files on computer. By definition, a cookie is a nothing but a piece of data that is sent from a website and stored locally by the user’s browser. Basically, web browsers and servers use HTTP […]

Categories
WordPress

Make a short code in WordPress

Creating a short code in WordPress is not easy to implement and at the same time this is also essential for building a block. But, using WordPress shortcode function, WordPress makes it simple to create. Here, you will know how to create your own shortcode using a simple example. Let’s make a plugin that display […]