Posts by Bruno Schneider • 16 points
3 posts
-
0
votes0
answers53
viewsQ: Sort with Number and String - does not sort to a number
I have an array of objects like the below: [ {"code":1,"name": "01 - teste um"}, {"code":8,"name": "02 - teste dois"}, {"code":32,"name": "209 - teste teste"} ...] I need to sort this array by key…
javascriptasked Bruno Schneider 16 -
0
votes2
answers539
viewsA: Incomplete Whatsapp API message
Buddy, you need to close the Anchor tag. To use the Whats Api you need to open a URL, and like any URL, you need to encode the URL (URL Encode). So in your case it would look like this, example…
-
0
votes2
answers67
viewsA: How to show the feedback message only for the focused field?
You have to add a Return when identified which field is not valid. if (nome.val() == "" || nome.val().length < 5) { campoIncorreto('nome', 'Campo nome preenchido incorretamente!'); return false;…