How to write data to a text file or in a .txt file from Excel using a Macro? I have shared an example here that explains it. ...
In todays post, I am sharing a quick tip showing how to get span element inside an li tag using jQuery and JavaScript. Let’s assume, I have an unordered list on my web page and inside each li tag ...
We often use the # (hash) within the href attribute of HTML anchor tag to link to a particular section in a web page. For example, to scroll to the top of the current page you can use href=“#top” and ...
I recently notice a bug in my Bulk Image Resizer tool. The file input was not working after clearing the existing selections and selecting new files. The issue is now resolved. After ...
In JavaScript, you can use the getElementByTagName() method to get elements with a given tag name. This makes is easy to get all elements of a specific type in a form. Here, I’ll show how to get all ...
In this article, I’ll show you how to convert your form data into a PDF using only JavaScript. Not just plain text data, the example also shows how easily you can convert an image on your web form ...
I shared an article on Hightcharts few days back where I have explained how to create Column charts dynamically using JSON data extracted from a remote file. You can use any data source for the chart ...
Highcharts is a pure JavaScript library, which provides easy to use methods and properties to create interactive and animated charts for your websites and web applications. It supports many different ...
My 11-year-old son recently created a YouTube channel for my 80-year old father (his grandpa). The channel name is “Mee & Grandpa”. My father is an Indian Navy Veteran (Ex. Pioneer Submariner) and he ...
I remember using the filter() method once to remove empty slots in an Array in JavaScript. An empty array slot might look like this … const arr = [1, , 3, 4, , 6]; and to remove these slots you ...