Tag: HTML
HTML
Use autocomplete=”new-password” in you input used for password. <div class=”form-group”> <label>Password</label> <input class=”form-control” autocomplete=”new-password” type=”password”...
Misc
We can create an HTML hidden template using the following method that we can add anywhere in the page. After creating a template we can now use it, modify it, and append/prepend it’s html anywhere in the page. <script id=”imageTemplate”...
Guest Post, Misc
The internet has become a part of almost every aspect of our lives. It has brought many changes to make your website more attractive and delicate; these changes include text-based websites adding pictures and videos. But behind all websites and web applications, there...
Misc
style anchor tag with no href attribute In website development, we often come across anchors/link tags that do not have an ‘href’ attribute. This may be due to many reasons like the anchor is used just for a dropdown, or initiation of a modal, and does not...
Misc
The following script resizes the width of HTML’s tag dynamically according to the width of the selected option. This may be used in places where you want to customize the select tag and make it look like a dropdown select. Demo Open demo in a full window –...