Implement Most Popular AdminLTE Bootstrap Theme in Angular 11

When we start the development of any application, the first thing is implementing a theme for the solution. As per current industries trends, it is seen that developers try to use one of available popular theme or framework. AdminLTE is one of the most popular and open source specifically for admin dashboard, however we can use this theme for several other type of applications. In … Continue reading Implement Most Popular AdminLTE Bootstrap Theme in Angular 11

Print the Content of Div or Element

There are several ways to print the div or section, however I found this is easiest way and it works fine. Code Sample Let me a bit explanation of the code. First we are selecting the contents of div as well as full body. Before print call, we are assigning the div contents to body and doing print. Finally, we are restoring the original body … Continue reading Print the Content of Div or Element

Select the Element Inside The Div (Division)

In many cases, we might end up with having same element ID in DOM, however, this is not recommended. In such scenario, if we want to perform certain scripting on one element, this may effects to another as well because of same element ID. You can select the particular element based on div as shown. Similarly, we can use className. Cheers!! Continue reading Select the Element Inside The Div (Division)