saber value ao escolher combobox php

Solutions on MaxInterview for saber value ao escolher combobox php by the best coders in the world

showing results for - "saber value ao escolher combobox php"
Valeria
06 Jan 2021
1$(document).ready(function(){
2    	
3    	$(document).on('click', '#vervalor', function(){
4    
5    		let valor_ingresso = $('#cb_ingresso option:selected').val();
6    		let quantidade_ingresso = $('#cb_catinsumo option:selected').val();
7    		let total = (valor_ingresso*quantidade_ingresso);
8    
9    		$('.total').css('display', 'block');
10    		$('#preco_total').html('R$ '+total);
11    	});
12    });
similar questions
queries leading to this page
saber value ao escolher combobox php