Posts by Raul F. de Melo • 21 points
5 posts
-
0
votes2
answers259
viewsA: How to get search links in google using javascript
Speak Ablon, all right? I’ve been researching here, apparently no API even to do this service. Once I made one data scraping (html reading technique and extract information), but it’s a bit boring…
-
1
votes2
answers277
viewsA: Help with innerHTML in Javascript
I saw that the error in your code is the lack of closing the iframe tag. I did a test here and it worked, follow: function inserir() { let nomeVideo = "Teste Template String" let linkVideo =…
-
0
votes3
answers3589
viewsA: How to pick a word within a string (phrase) in Node.JS
Complementing @Leo Caracciolo’s response, both replace and split are String object methods, so they allow you to string methods, for example: const meuTexto = "Raul, Felipe, de, Melo"; const…
-
1
votes3
answers107
viewsA: Print Items Web Page
I don’t know about asp, so maybe what I’m gonna tell you here doesn’t work very well. In CSS we have media queries, which are basically "modes" your page is in. Example: @media screen and…
-
0
votes1
answer197
viewsA: How can I reduce this line of code in javascript?
I don’t know exactly the reason for this code, just looking at it can’t understand what you intend to do by creating elements in the DOM that don’t exist in the HTML itself. I think before I answer…