Posts by Weslley • 31 points
3 posts
-
0
votes4
answers64
viewsA: jQuery does not return value
Better test the element for verification. use this version of the function in your footer: function checkRadioPeriodo() { if ( $('input[name="periodo"]').is(':checked') ) { console.log("checado!");…
-
0
votes1
answer24
viewsA: Failed to load a function with jQuery selector
Try with $('body').on('click', '.excl-receita', function () { });
-
0
votes2
answers152
viewsA: How to get the searched item with autocomplete?
It is not necessary to use the function Autocompleteselecthandler in this case. Just here in your select select: function(event, ui) { $('#buscarProduto').val(ui.item.value); }, you replace the code…