Posts by Bruno Monteiro • 156 points
3 posts
-
1
votes1
answer39
viewsA: How to search a word at an interval in the sentence
Try to use the preg_match. See the example below: <?php $str = 'O HTML foi criado em 1991, por Tim Berners-Lee, no CERN (European Council for Nuclear Research) na suíça. Inicialmente o HTML foi…
phpanswered Bruno Monteiro 156 -
0
votes3
answers451
viewsA: Role reuse on the same page with Jquery (beginner) Change event?
You can improve your code completely, but it would be necessary to analyze what the purpose of the final file. The quickest response in this case would be to specify a class for each select in his…
-
3
votes3
answers319
viewsA: How to disable console.log for a particular js file?
Add to the end of your file regras.js the following line: console.clear(); This will clear all the console.log() executed. Can be a good solution if you do not want or can not comment all lines.…
javascriptanswered Bruno Monteiro 156