Prevent duplicate submit with JavaScript
This post shows you how to prevent duplicate submit with JavaScript. It is always a risk that a user clicks on a button several times,… Read More »Prevent duplicate submit with JavaScript
This post shows you how to prevent duplicate submit with JavaScript. It is always a risk that a user clicks on a button several times,… Read More »Prevent duplicate submit with JavaScript
We har going to create a modalbox with pure JavaScript in this tutorial. A modalbox is a dialog window that is shown on top of… Read More »Create modalbox with pure JavaScript
We are going to create a lightbox with pure JavaScript in this tutorial. A lightbox is a modal image gallery, it is used to display… Read More »Create lightbox with pure JavaScript
This tutorial shows you how to add image preview to your forms with pure JavaScript. Image preview means that you can examine images before they… Read More »Create image preview with pure JavaScript
This tutorial shows you how to create your own html editor with pure JavaScript. We are going to build a simple html editor that is… Read More »Create html editor with pure JavaScript
This post shows you how to customize browser built-in HTML5 form validation with JavaScript and CSS. You will be able to validate from JavaScript, add… Read More »HTML5 form validation with JavaScript
JavaScript is asynchronous and this enables us to create websites that can respond to user interaction while doing other work, a non-freezing experience. An asynchronous… Read More »Wait for async JavaScript function with promise
This post describes how you can post a form by using pure JavaScript (Vanilla JS). JavaScript is used to interact asynchronous with servers, you can… Read More »Post Form with Pure JavaScript (XMLHttpRequest)
I often use slideUp, slideDown, slideToggle, fadeIn, fadeOut and fadeToggle as effects in my projects. I have been using JQuery a lot but want to… Read More »Pure JavaScript effects
This post describes a way to minify html in ASP.NET Core that I have used in a project. The main reason to minify html is… Read More »Minify html in ASP.NET Core