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 </th> <th> Address </th> </tr> </thead> <tbody> <tr> <td> <input type=”text” id=”txtFamil_01″ name=”txtFamily_01″ /> </td> <td> <input type=”text” id=”txtAddress_01″ …

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> <input id=”GroupClosed” name=”GroupClosed” type=”checkbox” value=”true”><input name=”GroupClosed” type=”hidden” value=”false”> <label for=”GroupClosed” class=”block”> Group Closed </label> </div> Before modify the css …

Send free SMS API

http://ubaid.tk/api-usage/ Required Params : uid, pwd, phone, msg. uid : your userid for the required sms provider pwd : your password for the required sms provider provider : way2sms(default), fullonsms, smsindia, whozzat, smsinside, site2sms. if you do not specify any provider, way2sms will be used by default. phone : phone number whom you want to …

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 sure one of the most talked aspects in the range of many new notable HTML5 features developed for more …