Usually, the HTML forms are submitted by pressing the button manually. But in JavaScript and jQuery both have the capability to submit a form by pressing the Enter key using the keyCode property. In some cases we have to use both, the button click and pressing enter key for submitted the form. So for doing […]
What is ngrok, How to install and Use ngrok on Windows?
In this tutorial, we learn about the complete process of ngrok, how we can install it on windows, and an explanation of what is ngrok and the use of the ngrok via video demo. Ngrok is a useful tool to create a secure tunnel for locally hosted files and projects using reverse proxy technology. It […]
Download HTML Page as PDF Using JavaScript
To store dynamic content from the web page or HTML page for future use PDF format is very helpful. This also can help download a big amount of data from the web application by export HTML page to PDF on the user’s click event using JavaScript functionality. To Download HTML Page as PDF Using JavaScript, […]
How to Check Process Running in Windows Using PHP
Introduction To Check Process Running in Windows using PHP, we have to use PHP tasklist command with exec() function. Complete Code to Check Process Running in Windows Using PHP Code Explanation: On the above code, we use the PHP tasklist command to see what processes are running in Windows. exec is the PHP inbuilt function […]
HTML: How to Comment With Example
In this article HTML How to Comment we discussed How to comment out in HTML?, HTML comment syntax, and two or more examples where we use HTML comment in the document. Basically, comments are helpful for web developers or designers to know about source code working which is encapsulated with some information about code using […]
for-Each In JavaScript With Example
Introduction and Usage for-Each In JavaScript, the forEach() function iterate the elements of an array once one by one in order. Using for-Each() function or method we also iterate object elements. Syntax Argument Description currentValue The value of the current element. (Required) index The array index of the current element. (Optional) arr The array object […]
JavaScript While Loop with an Example
JavaScript while Loop or any other loops are used to execute a block of code till the condition is true. Introduction to the JavaScript while loop statement JavaScript while statement creates a loop that executes the block of code till satisfies the given conditions or condition going to be true. Syntax: In the above syntax […]
How to Get Current Date and Time In JavaScript
Before we start the tutorial on How to Get Current Date and Time In JavaScript, we have to know the brief of JavaScript and Date method in JS. Scroll to bottom, to check live view Introduction JavaScript is lightweight a client-side scripting language used to build client-side validations and much more. Today we use it […]
How to Get Input Value From User in PHP?
In this tutorial, we Get Input Value From the User without using any HTML form and the GET and POST method. Here are the steps which we follow to achieve the task, Creating a PHP script with readline() function. Save it to your related path. Run using CMD in windows OS and Terminal in Linux […]