Posts by Lucas Wauke • 141 points
4 posts
-
0
votes3
answers1529
viewsA: Eliminating duplicate values in SQL
Try exactly like this: SELECT FTNF.nr_conhecimento AS conhecimento, NFS.nr_nota_fiscal AS NUMERO_NF, NFS.tp_registro AS TP_REG, NFS.emissao, NFS.vl_total, NFS.volumes, NFS.peso_liquido,…
-
0
votes2
answers119
viewsA: Search for words on the website
One way to do this with vanilla would be to use regular expressions I made an example in code pen: https://codepen.io/lwauke/pen/WaJVwv One way to do the regular expression you need would be by…
-
4
votes3
answers797
viewsA: How to remove "whitespace-only text Node" that appear in HTML from the DOM
the line break will generate a blank space in HTML in inline-block elements, but commenting will solve <div> <img src="" alt=""><!-- --><img src="" alt=""> </div>…
-
0
votes3
answers421
viewsA: Effects together with smooth scroll
You can check the positioning in the scroll event and call your animation depending on the placement: window.addEventListener('scroll', function (e) { var windowOffsetTop var triggered = false //…