You can redirect a URL to another page using HTML or JavaScript. Here are two methods to achieve this: Method 1: Using HTML `<meta>` Tag You can use the `<meta>` tag with the `http-equiv` attribute set to `”refresh”` to achieve a redirect in HTML. Here’s how you can do it: redirect.html <!DOCTYPE html> <html lang=”en”> […]
See MoreCategory: Javascript & Jquery Problems
Find the Minimum and Maximum Element in an Array Using Javascript With HTML
Certainly! You can use JavaScript to find the minimum and maximum elements in an array. Here’s an example code snippet with HTML: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Find Min and Max</title> </head> <body> <script> // Function to find minimum and maximum elements in an array function findMinAndMax(arr) { if […]
See MoreHow to Feet to cm Length Converter Tool Create Using Javascript?
Hello friends, today I will tell you through experts php tutorial how you can create converter tool calculate feet to cm length. So let’s try to understand step to step with example. Here is the javascript code for the feet to cm Length converter. <script>function LengthConverter(valNum) {document.getElementById(“getcm”).innerHTML=valNum/0.032808;}</script> Here is the html code with javascript for […]
See MoreHow to Use Jquery Stop() method?
Hello friends, today I will tell you through experts php tutorial How to Use Jquery Stop() method using Jquery code. So let’s try to understand step to step with example. The jQuery stop() method is used to stop an animation or effect before it is finished. The stop() method works for all jQuery effect functions, […]
See MoreQR Code generator using JavaScript
Hello friends, today I will tell you through experts php tutorial how you can create QR Code generator using JavaScript code. So let’s try to understand step to step with example.
See MoreHow to Convert Feet to Inches Length Using JavaScript?
Hello friends, today I will tell you through experts php tutorial how you can create converter tool calculate feet to Inches length. So let’s try to understand step to step with example. Here is the javascript code for the feet to Inches Length converter. <script> function LengthConverter(valNum) { document.getElementById(“outputInches”).innerHTML=valNum*12; } </script> Here is the html […]
See MoreCreate md5 hash generator tool Using javascript
Hello friends, today I will tell you through experts php tutorial how you can create md5 hash generator tool using Javascript script code. So let’s try to understand step to step with example. md5.html The Javascript script code of md5 hash generator is given to you below. And along with the code of html, you […]
See MoreHow to remove all line breaks from a string using JavaScript?
Hello friends, today I will tell you through experts php tutorial how you can remove all line breaks from a string using JavaScript. So let’s try to understand step to step with example. remove-line.html var stringWithLineBreaks = ‘ I’ve got Breaks ‘; var stringWithoutLineBreaks = stringWithLineBreaks.replace(/(\r\n|\n|\r)/gm, “”);//remove those line breaks
See MoreHow to Generate a Range of Numbers and Characters Using JavaScript Program?
Hello friends, today I will tell you through experts php tutorial how you can Generate a Range of Numbers and Characters Using JavaScript Program. So let’s try to understand step to step. Example: Generate Range of Characters // program to generate range of numbers and characters function* rangerate(a, b) { for (let i = a; […]
See MoreHow to Get Current URL Using Javascript?
Hello friends, today I will tell you through experts php tutorial how you can get current url through javascript program. So let’s try to understand step to step. Example: Get The Current URL // program to get the URLconst url_first = window.location.href;const url_second = document.URL;console.log(url_first);console.log(url_second); Output https://www.expertsphp.com/ https://www.expertsphp.com/ In the above program, window.location.href property and […]
See MoreHow to Create Even and Odd Numbers Calculator in JavaScript?
Experts php tutorial has come up with a new topic. That how you will make calculator to get odd and even number through Jquery or JavaScript program. So let’s go guys, you must have printed odd and even number on your local server through javascript program. You will be told today how the calculator to […]
See MoreHow to use css method in jquery?
Hello friends today I will tell you through the tutorial how you can use css method in jquery. I will tell you step by step. So let’s go. jQuery CSS() method provides different ways. 1) CSS property Return With this, you can get the property value of specified css. syntax: css(“propertyname”); Example <!DOCTYPE html> <html> […]
See MoreHow to Scroll to the Top of the Page Using JavaScript or Jquery With Demo?
Hello friends, today I will tell you through this post how you to scroll the top of the page Using Javascript or Jquery. So let’s go. You can scroll the page to the top very easily with javascript. Now I will tell you in 2 steps how to do it. So let’s go. Step 1:- […]
See MoreHow to Remove Punctuation From a String in JavaScript With Demo?
Hello Friends, today I will tell you through this article how you can remove or stript punctuation words through javascript or jquery. So let’s go. Remove Punctuation by Javascript, Stript Punctuation in Javascript or Jquery, Remove Punctuation Words Using Jquery, JS Strip Punctuation From String, Strip punctuation from a string with regex using Javascript or […]
See MoreHow to Remove all Question Mark From String Using JavaScript?
Hello friends, today I will tell you through this tutorial how you can easily remove all the question marks from your string content using javascript or jquery. This tutorial will try to understand you step to step. So let’s go. extract question mark from string by javascript with demo, remove question mark (?) from string […]
See MoreHow to Convert HTML File to PDF File Using JavaScript?
Hi friends, today I will tell you through experts php tutorial how you will convert html file to pdf file by javascript. So let’s try to understand step to step. Now you will be told in 2 steps how you can convert html file to pdf. First you create html file. And then after that […]
See MoreHow to Create 6 Digits Random Word Generator Using JavaScript & HTML Form With Example?
Hello friends, today I will tell you through experts php tutorial how you can generate 6 digit random word through javascript and html form. So let’s try to understand step to step. Six Digits Random Word Generator With JavaScript, Create 6 Digits Random Word Generator Calculator by JS, 6 Digit Random English Word Generator Using […]
See MoreHow to Create Random Word Generator Using JavaScript & HTML Form With Example?
Hello friends, today I will tell you through experts php tutorial how you can generate random word through javascript and html form. So let’s try to understand step to step. Random Word Generator With JavaScript, Create Random Word Generator Calculator by JS, Random English Word Generaor Using Jquery Overview Step 1:- First of all, you […]
See MoreHow to Create BMI Calculator Using JavaScript?
BMI Calculator Create With JavaScript: You can easily create bmi calculator using javascript code with html from and css. Hello friends today i will tell you through this article how you can create bmi calculator using javascript or jquery.I will try to understand you step to step. so let’s go. First of all, you create […]
See MoreCalculate Division of Two Numbers Using JavaScript With Demo
Friends, today I will tell you through this article. That how you can calculate division two numbers by javascript using html form with demo. So let’s try to understand. Friends, you can create division calculator in very easy way by javascript. You have to first create a function in javascript. You can name that function […]
See MoreMultiplication and Division of Two Numbers Using JavaScript Or Jquery
Friends, today I will tell you through experts php. That how you can multiply and divide two numbers by javascript. So let’s try to understand. Friends, you can create multiplication and division calculator in very easy way by javascript. I will tell you very easy way. You have to first create a function in javascript. […]
See MoreMultiply Two Numbers Using JavaScript
Hello friends, today I will tell you through this article how you can do multiplication of any two numbers through javascript. So let’s try to understand step by step. Multiplication Two Numbers With Javascript, Calculate Multiply 2 numbers Using js, How to Multiply Two Numbers by Javascript or Jquery With html form? Friends are very […]
See MoreHow to Convert English Text into Hindi Using JavaScript?
Hello Friends Today, through this article I will tell you how you can convert English Text into Hindi Text through javascript. So let’s try to understand. Converting English text into hindi by javascript, Typing English text into hindi using js, English text to Hindi text convert create online free tool using javascript First of all, […]
See MoreHow to Count Number of Words in String Using JavaScript?
Hello Friends, today I will tell you through my experts php tutorial how you can count the paragraph words of any string by javascript. So let’s try to understand. Counting words in string by JavaScript, How to count a number of words in given string in JavaScript?, Count words with JavaScript, Calculate Number of Words […]
See MoreHow to Generate 8 Digit Unique Random Number Using Javascript?
Get 8 Digits Random Number Using Javascript, 8 Digits Number Generate in javascript code, How to Find 8 Digits Random Number with Javascript, Create 8 Digits Random Number Using Javascript Hello Friends Today I will tell you through this tutorial how you can generate the random number of 8 digits through javascript code. First of […]
See MoreHow to Count String Words Using JavaScript?
Hello friends, today I will tell you through this tutorial how you can count any string word by javascript. I will tell you step by step through this tutorial. Count Words Using JavaScript or Jquery, Count Words with JavaScript, Count Words in String Using JavaScript, How to Count Words by JavaScript or Jquery? <!DOCTYPE html> […]
See MoreHow to Convert Binary to Decimal Using JavaScript or Jquery?
Through this tutorial, you can easily convert the value of binary to decimal through javascript and jquery. You are also explained as an example below. Convert Binary to Decimal Using JavaScript or JQuery and fetch value in html, Binary to Decimal canvert by JavaScript or JQuery, JavaScript Convert Binary to Decimal Value You can easily […]
See MoreHow to Convert Hexadecimal to Decimal Using JavaScript?
Through this tutorial you can easily convert the value of hexa to decimal through javascript. You are also explained as an example below. Convert Hexa to Decimal Using JS and fetch value in html, hexa to decimal canvert by javascript or jquery You can easily convert hexa to decimal by javascript and also show its […]
See MoreHow to Find Prime Numbers in Array by JavaScript?
Hello Friends, Today I will tell you through my tutorial how you can get prime numbers from array integers value numbers through javascript. Today I will tell you step to step through this tutorial. Friends, the language of javascript is very important for a developers and designer. If you do not know the language of […]
See MoreHow to Create Area of Circle Calculator Using JavaScript?
Hello friends, today I will tell you through this article how you can create area of circle calculator through javascript code. Circle Calculator Using JavaScript, Calculate of Circle Area by JavaScript, Area of a Circle Formula Using JavaScript, Area of a Circle Calculator Using JavaScript, Circle Area Calculator by js In this program we will […]
See MoreCreate Prime Number Calculator Using JavaScript
Hi friends, today I will tell you through this blog how you can get prime numbers with the help of javascript. So let’s go guys. How to Calculate Prime Number?I will try to tell you through JavaScript. I will try to explain you in 3 steps. Step 1:- Create HTML Page with input form.Step 2:- […]
See MoreHow to Create Scientific Calculator Using HTML, JavaScript and CSS?
A calculator is an Electronic Hardware Device that is capable of doing very Mathmetical Calculations such as addition, multiplication, division and subtraction. But we are going to talk about How we Create a Scientific Calculator through Javascript. Let’s try to know step to step. Keywords :- Scientific Calculator, Simple Scientific Calculator Create using HTML, JavaScript […]
See MoreHow to Create Loan Calculator Using Javascript?
Hello Guys Today i will tell you through this tutorial how you can create lone calculator through javascript code. For this I will tell you step to step, so let’s go Create Loan Calculator by Javascript or JQuery, How Can I Make Loan Calculator Using Javascript To create loan calculator, you have to write script […]
See MoreAnimate Div Height and Width on Hover Using jQuery
Hello Guys Today i will tell you through this tutorial how you can hover through mouse in jquery with the help of element or div. you are explained through the code below. Keywords :- jQuery animate function tutorial, Change div height & width on hover with animation using jquery, Animate an element, by changing its height […]
See MoreHow to Create filter/search function on multiple tables Using javascript Or Jquery?
Hello Friends , Today I will tell you how to create filter search function on multiple tables with jquery. so let’s go First of all, create a file of filter.html and add the code given below to that file and save it in any of your folders, and then run that file on the browser. […]
See MoreCreate Autocomplete Search Box in JQuery or JavaScript
Hello Freinds, Today I well tell you that How to Create Autocomplete Search Box via Javascript or JQuery. So let’s go. First of all, create a file of autocomplete.html and add the code given below to that file and save it in any of your folders, and then run that file on the browser. Keywords […]
See MoreHow to Change Text Color of the Elements Using JQuery Or JavaScript?
Hello Friends Today, through this tutorial, I will tell you how you can change your text color with the help of jquery.For this, you are given the code in the example below, you can see below Keywords :- Change text color with jquery, How can I change text color by jquery, change text color using […]
See MoreHow to Count Words Using JavaScript Or Jquery?
Friends, today I will tell you how many words you have in any sentence and how it can be counted through javascript code, so today I will try to explain you through this tutorial. Keywords :- Count words with JavaScript, Count Words in a String by JavaScript, How to Count Number of Words with JavaScript […]
See MoreHow to Generate Six Digit Unique Random Number Using Javascript?
Get Six Digits Random Number Using Javascript, 6 Digits Number Generate in javascript code, How to Find Six Digits Random Number with Javascript, Create 6 Digits Random Number Using Javascript Welcome to Experts PHP. So friends, today I will tell you through this tutorial how you can generate a random number of 6 digits through […]
See MoreHow to Remove Blank Lines Using Javascript?
Remove Blank Lines by JavaScript, Remove the Blank Lines in a Textarea With JavaScript, Remove Line Breaks Using a Javascript Language, Remove all Blank Lines Using Regular Expressions Friends, what happens when we are programming in any language. So sometimes there is rows or blank space in our programming, whether it is programming of […]
See MoreReturn Longest Word From an Given Array of Strings Using JavaScript
Find Longest Word in a String With JavaScript, Find the longest word in an array JavaScript, How to find the longest word in a string using JavaScript,Finding the Longest Word In a Sentence With JavaScript Hello Guys, i will tell you today through expertsphp tutorial that how will you fetch the words charecter with the […]
See MoreCreate Percentage Calculator Using JavaScript
Create Percentage Calculator by JavaScript, Using JavaScript Calculate Percentage Calculator, Calculate JavaScript Percentage in JavaScript Hello Friends, Today I will tell you through this tutorial how you can calculate the percentage through javascript. So let’s go let me first tell you that people use percentage tools to calculate exams marks. But through this tutorial, we […]
See MoreInclude Multiple HTML File Into Single HTML File
How to add Multiple Pages in Single HTML file Using JavaScript, Multiple HTML Files In One HTML File Using JavaScript Hi guys today i will tell you through this tutorial that how do you include multiple html files in javascript in only one file? I will tell you today by step by step through this […]
See MoreCreate Exponent Power Calculator Using JavaScript
Create Exponent Power Calculator Using Jquery Or JavaScript Hello guys Today i will tell you through this Tutorial How to Create Exponent Power Calculator Using JavaScript. Exponent Power Calculator Using JavaScript Or Jquery <html> <head> <title>Create Exponent Power Calculator Using JavaScript</title> </head> <body> <form name=form1> Enter Base number: <input type=”text” name=”input1″ size=’15’ placeholder=”Enter Base number”> […]
See MoreGenerate a Random Number Between 1 and 10 in JavaScript
Generate Unique Random Numbers Between 1 and 10, How to Generate One Digit Random in JavaScript Hello guys Today i will tell you through this Tutorial how to Generate Random Number JavasScript from 1 to 10. Generate One Digit Random Number in JavaScript <!DOCTYPE html> <html> <head> <script type=”text/javascript”> var num = Math.floor(Math.random() * 10 […]
See MoreCreate Online Square Root Calculator in JavaScript
Online Square Root Calculator by javaScript, Square Root Calculator Using javaScript, Square Root Calculator Tool with javaScript, Create Square Root Calculator in javaScript Hello friends, today I will tell you through this tutorial how to create a Online Square Root Calculator by javascript code. Step 1:- First Create html file (square-root-calculator.html). Step 2:- Add Square […]
See MoreCreate Simple Basic Calculator Using JavaScript
Try IT Your Self | Demo Create Simple Basic Calculator Using JavaScript, Online Basic Calculator Using JavaScript Hello friends, today I will tell you through this tutorial how to create a simple calculator through javascript program. I will tell you step by step about this. Overview Step 1: Create html file (simple-calculator.html). Step 2: Create css […]
See MoreHow Can I Generate a 3 Digits Random Number Using JavaScript?
Get 3 Digits Random Number Using Javascript, 3 Digits Number Generate in javascript code, How to Find Three Digits Random Number with Javascript, Create Three Digits Random Number Using Javascript Hello Friends Today I will tell you through this Tutorial how you can generate the random number of Three digits through javascript or jquery code. […]
See MoreHow to Remove First 2 Words From String Using JavaScript?
Remove First Two Words From String Using JavaScript or Jquery,Delete starting 2 Words Using Javascript Hello friends, today I will tell you through this tutorial that you can remove 2 words from start of the value of any string through javascript. Demo <script> var original = “My Name is Jyoti Chaurasiya.”; var result = original.substr(original.indexOf(” […]
See MoreRemove the Last Word in the String Using JavaScript
How to Remove the Last Word in the String Using JavaScript, How can I Remove the Last Word From a String with Javascript Hello friends So today I will tell you through these tutorials how to remove the last words from the value of any string with JavaScript. So first I made a variable and […]
See MoreHow to Remove Disabled Attribute by JQuery?
Remove Disabled Attribute by JQuery, Remove Disabled Attribute Using JQuery remove-disabled-attribute-by-jquery.html <!DOCTYPE html> <html> <head> <script src=”https://code.jquery.com/jquery-git.js”></script> <meta charset=”utf-8″> <title>How to Remove Disabled Attribute by JQuery?</title> </head> <body> <input type=”checkbox” class=”disabledboxes” disabled>Red <input type=”checkbox” class=”disabledboxes” disabled=”disabled”>Green <p><input id=”button1″ type=”button” value=”Click to enable check boxes”/></p> </body> <script> $(document).ready(function(){ $(‘#button1’).click(function(){ $(‘.disabledboxes’).prop(“disabled”, false); }); }); </script> </html>
See MoreHow to CSS Class Add by Jquery with Demo?
Add CSS Class Dynamically In JQuery, JQuery Change CSS Class Dynamically, Add a CSS Class on click Using JQuery Hi friends Today, I will tell you through this tutorial that how jquery can be used to add css class to onclick. You will create a file of addcss.html name. It will copy and paste the […]
See MoreHow to Generate 10 Digit Unique Random Number by Javascript?
Get 10 Digits Random Number Using Javascript, 10 Digits Number Generate in javascript code, How to Find 10 Digits Random Number with Javascript, Create 10 Digits Random Number Using Javascript Hello Friends Today I will tell you through this tutorial how you can generate the random number of 10 digits through javascript code. First of […]
See MoreHow to Generate 5 Digit Unique Random Number by Javascript?
Get Five Digits Random Number Using Javascript, 5 Digits Number Generate in javascript code, How to Find Five Digits Random Number with Javascript, Create 5 Digits Random Number Using Javascript hello friends Today I will tell you through this tutorial how you can generate the random number of five digits through javascript code. First of […]
See MoreHow to Generate 4 Digit Random Number by Javascript with Example?
Get Four Digits Random Number Using Javascript, 4 Digits Number Generate in javascript code, How to Find Four Digits Random Number with Javascript, Create 4 Digits Random Number Using Javascript Hello Friends Today I will tell you through this Tutorial how you can generate the random number of four digits through javascript code. First of […]
See MoreAdd Remove Multiple Input Fields Dynamically Using Jquery
“Add Remove Multiple Input Fields Dynamically Using Javascript,Dynamically Add Remove Multiple Input Fields with Jquery,Create Add/Remove Multiple Dynamically Input Fields in Javascript or Jquery” Hello friends, today I will tell you through experts php tutorial that how to use dynamic multiple input fields in jquery. Step by step You will be explained through this tutorial. […]
See MoreHow to Create GST Calculator using Javascript or Jquery?
“Create GST Tax Calculator in Javascript, How to calculate GST using JavaScript Code, Create Auto Calculate GST in Javascrip or Jquery, Calculate GST Function using Javascript” Today I will tell you how you can gst calculate by javascript code. The full form of GST is Goods and Services Tax. Today I will tell you how […]
See MoreHow to Get the IP Address of any Client System by c# ?
“How to get client ip address in asp.net using c#,Find IP Client address using C# Program,Get Client IP Address and Location in ASP.Net using C#” Hello friends Today, through this tutorial, we will learn how to get the ip address of any client from the c#. Friends, we are working on a big project any […]
See MoreHow to Check Internet Speed Test using Javascript?
Detecting internet speed using Javascript, How to detect internet speed in JavaScript, How to Detect Connection Speed With JavaScript, Detecting internet speed in Javascript, Check internet speed test in Javascript Hi guys today i will tell you through this tutorial that you can check the internet speed of any system via javascript. This tutorial will […]
See MoreGetting Sub Category Base on Selection from main Category Using Jquery or Javascript
Selecting a sub-category after selecting category using jquery, load sub category based on category by calling jquery function, Retrieve Sub-Categories according to Parent category selection Hi guys today i will tell you through this tutorial that how do you get the value of the related subcategory category in javascript and jquery? This tutorial will tell you step […]
See MoreHow can I get form data with JavaScript/jQuery
Jquery get form field value, JavaScript get form field value, How can I get form data with JavaScript/jQuery, Accessing form elements using jquery, JQuery Get Content and Attributes, Convert HTML Form Field Values to a JSON Object, Get All the Values of All Input Boxes in JQUERY with the Serialize Function how-can-i-get-form-data-with-javascript-jquery.html <html> <head> <script src=”https://code.jquery.com/jquery-git.js”></script> […]
See MoreAttribute add using jQuery
Attribute add using jQuery, Add Attribute to an HTML Element in jQuery, Adding attribute in jQuery, Add and remove attribute with jquery, How to add attribute to an element using jquery, jQuery Get Attribute, Set Attribute, Remove Attribute, Set values to custom attributes in Jquery attribute-add-using-jquery.html <html> <head> <script src=”https://code.jquery.com/jquery-git.js”></script> <meta charset=”utf-8″> <title>Attribute add using […]
See MoreHow to Move one DIV element inside another using jQuery
How to Move one DIV element inside another using jQuery, How to move an element into another element, Moving the content of a DIV to another DIV with jQuery, jQuery Move div into another div, Moving a div from inside one div to another div using jquery, Move an element into another element in jQuery, […]
See MoreCreating a div using jquery with style tag
Creating a div using jquery with style tag, Creating a div element in jQuery, using jquery to dynamically create div creating-a-div-using-jquery-with-style-tag.html <!DOCTYPE html> <html> <head> <script src=”https://code.jquery.com/jquery-git.js”></script> <meta charset=”utf-8″> <meta name=”viewport” content=”width=device-width”> <title>Create a div using jQuery with style tag.</title> </head> <body> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem […]
See MoreHow to remove all CSS classes using jQuery
How to remove all CSS classes using jQuery, Remove All classes From Div, Remove all css from a html element using JQuery or CSS, jQuery removeClass() Method, Add and Remove CSS Classes using jquery Hi guys today i will tell you through this tutorial how we can remove any tags or div class from jquery […]
See MoreCharacter Count in Textarea using Jquery
Count characters in textarea, Character Count in Textarea using Jquery, Character Count in Textarea using Javascript, JQuery text area character count, Word and Character Count using jQuery, TextArea character counter using jQuery, Character Counting Remaining on Textarea, How to count number of characters in textarea using jQuery, Live Word and Character Counter using jQuery, Textarea […]
See MoreZebra Stripes table create using jquery
jQuery Zebra Stripe a Table, Create a Zebra Stripes table effect with Jquery, Table row and col highlight with zebra striping, How To Create A Zebra Striped Table, How to add zebra striping and highlighting to table rows with jQuery Hi friends, today I will tell you through this tutorial how we create zebra stripes […]
See MoreText Blink using jquery
How to blink text in HTML using jQuery,Text Blink using jquery,How to Use jQuery to Create Blinking Text,Text blinking jQuery,Blinking Text with CSS3 and jQuery,Blinking text effect with HTML,Simple jQuery Blink Animation text-blink-using-jquery.html <!DOCTYPE html> <html> <head> <script src=”//code.jquery.com/jquery-1.11.1.min.js”></script> <meta charset=”utf-8″> <title>Text Blink using jQuery</title> </head> <body> <p>jQuery <span class=”blink”>Exercises</span> and Solution</p> </body> <script> function […]
See MoreDisable/Enable the Form Submit Button
jQuery disable/enable submit button,Disabling and enabling a html input button,Disable and Enable submit button in jquery,Disable/Enable Submit Button until all forms have been filled <!DOCTYPE html> <html> <head> <script src=”//code.jquery.com/jquery-1.11.1.min.js”></script> <meta charset=”utf-8″> <title>Disable/enable the form submit button</title> </head> <body> <input id=”accept” name=”accept” type=”checkbox” value=”y”/>I accept<br> <input id=”submitbtn” disabled=”disabled” name=”Submit” type=”submit” value=”Submit” /> </body> <script> $(‘#accept’).click(function() […]
See MoreScroll to the Top of the Page with JQuery
Scroll to the top of the page with jQuery,Scroll to the top of the page Using jQuery,Scroll to the top of the page using JavaScript/jQuery,How To Create a Scroll Back To Top Button,How to create Scroll to Top animation in jQuery,Smooth Scroll to the Top of the Page using jQuery,jQuery Scroll Top scroll-to-the-top-of-the-page-with-jquery.html <!DOCTYPE html> […]
See MoreHow to Print a Page Using JQuery?
Print a page using jQuery,Print specific element using jquery,jQuery Plugin To Print Any Part Of Your Page,Window print() Method,How to print a part of my page using jQuery,Print DIV content by JQuery,Print a Part of Page using Javascript print-a-page-using-jquery.html <html> <title>Print a page using jQuery.</title> <head> <script src=”//code.jquery.com/jquery-1.11.1.min.js”></script> <meta charset=”utf-8″> <title>Print a page using jQuery</title> […]
See MoreGet First Word of String Using Javascript
Hi guys today i will tell you through this tutorial that how do we get the first word of any sentence from javascript code. Get first word of string, Get first word of string in Javascript, Get first word of string Using Javascript, Get first word from Sentence using Javascript, Get first word from Sentence […]
See MoreDownload html textarea content as a file
Downloading Textarea Contents in txt format using PHP, Downloading Textarea Contents using PHP Hi guys today i will tell you through this tutorial that you are downloading the value of textarea by php. textarea.php <?php if(isset($_POST[‘text’])) { header(‘Content-disposition: attachment; filename=test.txt’); header(‘Content-type: application/txt’); echo $_POST[‘text’]; exit; //stop writing } ?> <html> <body> <form action=”” method=”post”> <textarea […]
See MoreAssign PHP Variable Value into Javascript Variable
Hi guys Today, I will tell you through this tutorial how you can get the php variable value in javascript variable value. First of all, you can create a php file. You can keep any name for this file. variable.php <?php $name= “Rahul”; ?> <script type=”text/javascript”> var jvalue = ‘Hi, <?php echo $name; ?>’; </script> […]
See MoreAssign Javascript Variable Value to PHP Variable
Hi guys Today, I will tell you through this tutorial how you can get the variable of javascript in php variable value. First of all, you can create a php file. You can keep any name for this file. variable.php <script> var myJavascriptVar = ‘123456’; document.cookie = “myJavascriptVar = ” + myJavascriptVar </script> <?php echo […]
See MoreHow to Get User Timezone in Javascript?
Hi guys Today, I will tell you through this tutorial that how to get the location of any user from the user’s timezone javascript script code. First of all you can create an html file. You can keep any name for this file. timezone.html <script> console.log(Intl.DateTimeFormat().resolvedOptions().timeZone) </script> You can also write this code like this. […]
See MoreAdd Remove Input Fields Dynamically Using JQuery Or JavaScript
Demo | Download Code Add Remove input fields dynamic,Add Remove input fields dynamic with jquery,Add Remove input fields dynamic with javascript,Add Remove input fields dynamic using jquery. In this tutorial I will tell you how to add dynamic input filed with html and jquery plugging, the HTML code written below. You can easily copy […]
See MoreHow to get Client IP Address by Javascript or Jquery?
Try It Yourself! Sometimes you are working in the development and you have to do something like that. If we have any request or a user’s request is coming, then. This request is coming from which IP address is coming from us. It is very easy to get the IP address of any user’s […]
See MoreFacebook Login Using Javascript SDK
Hi guys today i will tell you how to login with facebook through javascript. And how the user’s name, user id, and user can get the information of the user’s Facebook user. Nowadays people like to login to Facebook or Google without registering on any website because all the user’s information can be easily taken […]
See More