Dynamically add rows and html controls in table using jQuery

How to add rows dynamically in HTML table with textbox and textarea controls. Example: Download <html> <head> <title>Table Dynamic Row Add Delete Demo</title> <script src=”https://code.jquery.com/jquery-3.2.1.js” integrity=”sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=” crossorigin=”anonymous”></script> </head> <body> <div> <table id=”tbl1″> <thead> <tr> <th> Family…

Read More

CSS style problem with MVC rendered checkboxes using MVC helper

I have faced the issue with CSS for checkboxes in asp.net mvc. Below is mvc code. @Html.CheckBoxFor(model => model.GroupClosed) <label for=”GroupClosed” class=”block”> Group Closed </label> It will render as below: <div class=”checkbox clip-check check-primary”> <span class=”control-label” style=”color:white”>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>…

Read More

HTML5 Video Player

Flash has always been the standard for displaying video online, yet with the arrival of HTML5 web developers have got more excellent possibilities to easily streamline video content. HTML5 new specifications for a video is for…

Read More