Configuring local subdomains using Wampserver

   19/07/2022
97397 , 0

Compared to using a web server, developing code locally on your computer offers some significant advantages. You don't have to wait for your file modifications to upload to the web, so it's typically faster.

WampServer, a tool that enables you to run a local web environment, will be what I use (Apache, PHP & MySQL). WampServer must be downloaded and installed before you can move on with this tutorial.

Easy Image SlideShow using jQuery

   15/07/2022
97154 , 0

Today I'll teach you how to make a straightforward jQuery image slideshow. You may accomplish this task using a number of plugins, but I'll demonstrate how to do it solely with jQuery.

Creating a screen recorder using JavaScript

   06/07/2022
100026 , 0

The MediaDevices and MediaRecorder APIs in JavaScript can be used to record the user's screen.

Users are asked to select and grant permission to record the contents of a screen or a visible area through the MediaDevices interface.

Use media recorders to capture the data in a MediaStream that could be recorded. The MediaStream Recording API's MediaRecorder Interface.

jQuery Calculator

   09/11/2021
109256 , 0

You may get used to window calculator application and find it easy to access than actual calculator on your hand. But what if you have it right in your web application? Yes, it is going to be easier and quicker. In addition, it will make your web application more efficient as you can make the calculation result right in to your working algorithm. However, you will be shown the standard calculator and you can extend it to be more complex as you want. In this tutorial, you will find out how to make it works right in your web application just in minutes.

Print Specific DIV Content Using jQuery

   30/11/2016
100240 , 0

Most websites nowadays may need print function for its content like article, report, table, invoice, and other printable contents. With web browser, we can also just simply press the key “Ctrl + p” to have any page printed. The problem is that, using that direct keyboard print keys are printing the whole page including the unwanted areas that normal look really bad or have problem with web layout leading the messy look on the printed document. What if we can print a specific area of your website! What if we want to print only a div content, not anything else!

This tutorial is going to tell you an effective trick to deal with this issue. You may just need to identify a specific DIV to be printed once we click the “Print” button. Please follow this tutorial carefully, we will show you all the things to have it worked.