How to disable tabs in Bootstrap ?
To disable a tab, we can remove the attribute : data-toggle=”tab” from the tab part enclosed under ‘a’ element. Further we can add the class… Read More »
To disable a tab, we can remove the attribute : data-toggle=”tab” from the tab part enclosed under ‘a’ element. Further we can add the class… Read More »
What is POM? POM is a design pattern which is commonly used in Selenium for Automating the Test Cases. This design pattern can be used… Read More »
Background Property The background property in CSS is very commonly used and contains many variants. The background property consists of all the following properties: background-color… Read More »
To center an HTML element horizontally you need to specify the width of the parent element. Similarly to center an HTML element vertically you need… Read More »
The parseInt() function: The parseInt() function is used to parse a string and convert it to an integer of a specified radix. It takes two… Read More »
A Bootstrap Carousel is a slideshow for rotating through series of contents. It is built with CSS and Javascript. It works with a series of… Read More »
The HTML iframe name Attribute is used to specify a reference for an <Iframke> Element. The name attribute is also used as a reference to… Read More »
The HTML <map> name Attribute is used to specify the name of the mapping image, This attribute is associated with the <img> usemap attribute and… Read More »
Git provides an option to keep a track on our project progress from revisiting older commits to mending our mistakes and undoing changes. It gives… Read More »
The CSS style can be set to a character in vertically half or horizontally half both. Add a class on the text and the class… Read More »
Git provides a very important option of altering the commit history. As the master of git, you can control and make it function according to… Read More »
After basic snapshotting of a repository, following commands are used to get it’s commit history. git log git shortlog git diff Now, we will discuss… Read More »
Cookie: A Cookie is a small file sent by the server to preserve stateful information for a user. It is stored on the client’s computer… Read More »
An item can be replaced in an array using two approaches: Method 1: Using splice() method The array type in JavaScript provides us with splice()… Read More »
Often times, while writing a code we face situations where we need to pad a numbers/strings and make them of a default length. In this… Read More »