What is Bounce Rate? First, we should know about the term “bounce rate” In easy words we can say, bounce rate is the ratio between the number of visitors comes on our site and the number of visitors leaves our site from the landing page without navigating to another page. When visitors or customers land on […]
Author: Sunny Saurabh
How to see the code of ‘.ctp’ file as colorful as ‘.php’ file in NetBeans
NetBeans is one of the best and powerful IDE for any WebDevelopment specially best for PHP frameworks such as ZenCart, OpenCart, CakePhp etc. CakePhp use their own custom file extension for its View files i.e. *.ctp. NetBeans doesn’t know about this file by default. So there are no color coding will be shown when these […]
Handle Large Data in Select2 Dropdown
Objectives of the blog After the reading of this blog, you will able to know how you can handle the large set of data in the Select2 dropdown menu. Description For a dropdown, if use the select2 library, it works really well for the small number of data but when the data become too […]
Copy to clipboard in JavaScript
Objectives of the blog After the reading of this blog, you will be able to know how data can be copy to clipboard with help of java script. Benefit of copy to clipboard functionality In the current web world, it’s all about the user experienced from your site. During our work on any site we […]
JavaScript Desktop Notification
Objectives of the blog After reading this blog, you will able to setup the desktop notification for your site. You will also be able to customize your notification by your own message, image, icon etc. Benefit of Desktop Notification Suppose you want to notify your customer outside the webpage then we can use the desktop […]
Case-insensitive array sorting in the Php
Problem: $data = array(“A”,”M”,”X”,”b”,”d”,”E”,”l”); I need to sort the data base on value. When I use asort($data), got the following: [0] => A [5] => E [1] => M [2] => X [3] => b [4] => d [6] => l In the above example, “b”,”d” and “l” starts with a lower case but ends […]
How to Use Actions in Adobe Photoshop?
En tant que graphiste, il est très important de livrer notre produit avec une meilleure interface utilisateur. Nous devons également faire le travail de manière plus efficace et plus rapide. Mais chaque fois que nous devons faire la même tâche dans Adobe Photoshop à plusieurs reprises. En tant que nature humaine, nous perdons notre intérêt […]
How to Use Actions in Adobe Photoshop?
As a graphics designer, it is very much important to deliver our product with a better UI. We also to do the work in more efficiency and with more speed. But any time we have to do the same task in the repeatedly in Adobe Photoshop. As a human nature, we lose our interest to […]
How to use GraphQL in PHP?
Have you heard about GraphQL? GraphQL is a modern query language for the API. In another word, we can say it is a modern application layer query language. With the help of GraphQL, we can fetch data from the API calls and it works on the HTTP as REST. It provides the powerful option to […]
How to create your own HTML template using jQuery?
This article is all about creating HTML template using jQuery. Let’s know about the jQuery jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of […]