This code snippet is my one of the favourite snippet. I hope you will like it, in this code snippet I have created a digital clock which not even shows the time but also the complete date. As I have mentioned above, that digital clock shows the date as well, so I think many of you already have guessed that it would be based on the JavaScript Date object. I hope you will like my colour combinations, which are not so common. See the Pen Vanilla JavaScript Digital clock with…
Read MoreCategory: Featured
First letter capitalized of each word – JavaScript
I am going to show you how you can create a custom method to capitalize the first letter of each word by using String prototype. However, you can achieve the same results by using CSS, all you need to do is create a class .capitalize{ text-transform: capitalize; } Despite the fact that it is possible with CSS but sometimes on certain scenarios we need to do this by JavaScript. See the Pen First letter capitalized of each word with pure JavaScript – simple and easy by Tayab Raza (@TayabRaza) on…
Read More