Posts by Anderson Pimentel • 191 points
4 posts
-
3
votes3
answers49
viewsA: Stylize each different line
Using a div and divinternal s (you can also put a specific class in each one): .mensagem div:nth-child(1) { font-weight: bold; } .mensagem div:nth-child(2) { color: red; } .mensagem div:nth-child(3)…
cssanswered Anderson Pimentel 191 -
2
votes1
answer13280
viewsA: how to load JSON file in JS and load search result in HTML code?
It would be something like: $.getJSON("js/database.json", function(data) { var bands = data.bands; for (i = 0; i < bands.length; i++) { saida += '<div class="row">'; saida += '<div…
-
1
votes1
answer26
viewsA: Help with Regex in VB.Net
Tries ^GO\b. The ^ is to pick up at the beginning of the line and the \b to limit this word. Forehead here.…
-
0
votes2
answers588
viewsA: Reload in Table HTML
Exchange the following: <button type="button" onclick='removeNovoEquipamento(${equipNovoOrcamento.id},${orcamento.id}); reloadNovoEquipamentoTable();' class="btn btn-danger btn-sm"> That’s…