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 […]

Categories
WordPress

Make a simple plugin in WordPress

Plugin is very important role in WordPress and it helps to extend the WordPress functionality and features. Let’s make a simple plugin in WordPress. For Making a plugin in WordPress you have to do following things: Step 1: Create a directory in your plugin folder. Step 2: Then create a PHP file in this folder […]

Categories
Css Html

Disable resizable property of textarea

Want to disable resizable property of textarea? Here is some tips to prevent the click on the bottom right corner of the textarea. To disable resizable property of textarea, there are a few options. <textarea name=”txtName” id=”txtID”></textarea> CSS can solve this problem and unfortunately it’s only supported on 60% of used browsers nowadays. Basically, you […]