How to disable right click and text selection

Disable right click and text selection It is possible with javascript to disable right click and text selection to avoid the text from being copied. Sometimes due to some rules you may need to disable the right click and text selection. Below script will help you...
Read More ⟶

javascript redirect code

With below javascript redirect code, you can easily redirect your current page to any pages you desire. Simple Javascript redirect code copy and paste it into your page where you want to redirect on load. <script type=”text/javascript”> window.location =...
Read More ⟶

javascript function keyboard key

With javascript we can control the function of keyboard key. Its necessary sometimes when we have to create an event on clicking some specific key. In this post we are going to learn how to handle javascript funciton keyboard key. How to use javascript function...
Read More ⟶

Basic simple calculator

In this tutorial I am going to show you how to design a basic simple calculator with few HTML codes. Generally building of calculator seems to be very hard work and lots of code. But it is not true when we have powerful markup language like HTML (Hyper Text Markup...
Read More ⟶

Nested Loop javascript

Simple nested loop javascript code var person = [{ name : [ {firstName: "Ravi", lastName: "Kumar"} ], id : 5566 },{ name: [ {firstName: "John", lastName: "Braman"} ], id : 96 }]; var item, text; text="<table...
Read More ⟶

HTML5 default validation for confirm password

Hello guys, In this section, I am going to show you how you can easily validating HTML5 default validation for confirm the password. Generally in HTML5 when you create a form you simply write “required” attribute to the form element and it starts validating...
Read More ⟶

Remove duplicate array based on api response attribute value

Remove duplicate array based on api response attribute value is something different than a normal array. In this post we will find out how we can achieve by comparing attribute value of object array and remove the duplicate array. Remove duplicate array simple In the...
Read More ⟶

Compare identical array

How to compare identical array var userOrder = ["sort_one","sort_two","sort_three","sort_four","sort_five"]; var correctOrder = ["sort_one","sort_two","sort_three","sort_four","sort_five"]; function arraysEqual(arr1, arr2) { ...
Read More ⟶