Posts by Felipe Macedo • 11 points
2 posts
-
0
votes1
answer39
viewsA: form to not connect to google sheet
I believe you have to put the jquery file in your project. Can be downloaded or included by CDN: <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>…
-
1
votes3
answers60
viewsA: Detect parts of a string
You can use the split function, sending an empty space as a separator, returning an array. Ex: const frase = 'Definir a altura de objeto para 500'; frase.split(' '); // [ 'Definir', 'a', 'altura',…
javascriptanswered Felipe Macedo 11