The WYSIWYG editor is driven by JavaScript which lets users enter the formatted text. It is converting the formatted text to HTML when the web form is submitted to the server. When you need to accept formatted text content or HTML content from the users on...

By: CodexWorld Oct 18, 2022

Multiselect dropdown is very useful to allow the user to select multiple options in a select box. Multiple selections of the dropdown list can be added by using multiple attributes in the select tag. Instead of using the multiple attributes in HTML, you ca...

By: CodexWorld Aug 4, 2023

The browser print dialog does not allow to select a specific section of the webpage for printing. We need to get the help of the client-side or server-side code to print specific areas of the web page. The print feature in the web application allows users ...

By: CodexWorld Nov 30, 2022

If you are looking for a jQuery plugin to add date-time picker to input field, this article will help you lot for that. DateTimePicker jQuery plugin is very simple and easy to implement. Also, this plugin provides various options to customize your Date-Tim...

By: CodexWorld Aug 23, 2017

JavaScript Date object is used to work with dates and times. Date object is created with new Date(). Using Date object, you can create a digital clock in JavaScript. In this article, we'll show the simplest way to make a digital clock with date using JavaS...

By: CodexWorld Apr 22, 2016

Google Identity API lets you allow the user to login to your website with their Google account using JavaScript. You can integrate Sign In With Google Account using JavaScript client library. Google JavaScript API client helps the user to login with their ...

By: CodexWorld Jul 31, 2023

In this article, we'll show you a small JavaScript snippet for displaying a confirmation dialog box at the time of closing the tab or browser. It is very helpful for both the user and website. Using JavaScript onbeforeunload event, you can easily show a co...

By: CodexWorld Apr 22, 2016

You have used many ways to upload the file to the server. But are you tried to upload a file using plain JavaScript? This tutorial will show how you can upload a file using JavaScript and PHP. You don't need to use jQuery or Ajax for upload file without pa...

By: CodexWorld Apr 22, 2016

In this short JavaScript tutorial, we'll show how to redirect page after some specified time. Means, page redirect will delay for some specified times. You don't need to use jQuery for doing it, using JavaScript you can easily implement this functionality....

By: CodexWorld Apr 22, 2016
keyboard_double_arrow_up