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

Flash Session in laravel and PHP

Friends, session is very important in both HP alarms. Authentication of session is done the most. Authentication is mainly called login registration of the user. After logging in to the…

0 Comments