Master Template in laravel

Master template means a template which has a header, footer and sidebar. We prepare it in the form of a structure. It has only one dynamic part in which the…

0 Comments

Change event in select using jquery

$('#gMonth2').on('change', function (e) {           var monthSelected = $("option:selected", this);           var valuemonthSelected = this.value;       }); <select id="aioConceptName"> <option>choose io</option> <option>roma</option> <option>totti</option> </select> var conceptName = $('#aioConceptName').find(":selected").text(); var conceptName = $('#aioConceptName').find(":selected").val();  …

0 Comments

Fetch unique data in laravel

Friends, many times there is such data inside the database which keeps repeating multiple times and what we need is that we need only unique answers from them, I am…

0 Comments

Calculator for invoice using javascript

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> <script>       function totalPrice($val){                    let amt = 0;                    let arrlength = 1;                     let arr = document.getElementsByName('owner_shares');                    for(let index = 0; index < arr.length; index++){                        let price =…

0 Comments