How to remove option to select list using jQuery

ML Code <select id=”paid_by” name=”paid_by”> <option value=””>Select Payment Method</option> <option value=”1″>Cash</option> <option value=”3″>Credit cards</option> <option value=”5″>Cheque</option> <option value=”6″>Debit / Credit Sales </option> <option value=”7″>Gift Card</option> <option value=”8″>Deposit</option> <option value=”10″>Free</option> <option value=”11″>Points</option> <option value=”13″>Dialog Cards </option> <option value=”14″>Visa / Master</option> <option…

Read MoreHow to remove option to select list using jQuery

jQuery Date formate

Add this function to your <script></script> and call from where ever you want in that <script></script> <script> window.alert(Getnow()); function GetNow(){ var currentdate = new Date(); var datetime = currentdate.getDate() + “-” + (currentdate.getMonth()+1) + “-” + currentdate.getFullYear() + ” “…

Read MorejQuery Date formate

Tabs using jQuery

let lean how to create tabs using a Jquery and CSS. How To Create Tabs <div id=”example-tabs”> <h3>Keyboard</h3> <section> <p>What is needed to transform it to a tabs component? Not much. Just override some properties and done.</p> </section> <h3>demos</h3> <section>…

Read MoreTabs using jQuery