Someone asked me this question after visiting this page. There is a list 1, 2, 3 and the numbers are inside a circle. Its pure CSS. Ok, I’ll show you how create a Circle around a number, or any text ...
Let us assume I have a word file with few paragraphs in it. I want to copy content as it is from the doc file and write it in my Excel worksheet, each word in a cell, go to the next line or row and ...
You can easily change CSS properties dynamically using jQuery .css() method. I have previously shared an article here explaining how to add CSS !important Style property using jQuery ...
In JavaScript, you can use the display or visibility property of the style object, to hide (or show) elements dynamically using either the elements ID or a Class name. Here in this post, I’ll show ...
There a few simple methods (or SQL queries) using which you can get or select the last 3 rows or records in a table in SQL Server. I am sharing 3 different methods here and all are useful in different ...
I knew how to do this. However, I still couldn’t recollect when I needed this. So, I thought I should share this quick tip post on how to add multiple cases in a switch statement in JavaScript. ...
Here in this article, I’ll show you how to capture on change event of a checkbox using jQuery and call a function when a checkbox changes is status from checked to un-checked and vice versa ...
In JavaScript, you can use the “.createElement()” method to create any element dynamically. Now, there are two simple methods that you can use in JavaScript to add class to the dynamically created ...
An alphanumeric value in an Excel cell may look like this “70 kg” (a number and two alphabets). Now, let us assume, I have two cells with values 70 kg and Rs. 50. How do I calculate these alphanumeric ...
There are many ways you can split a string dynamically into multiple lines on your web page. You can use \n within a string, and occasionally using a combination of .split() and .join() methods ...