Posts by Julio Cesar • 15 points
3 posts
-
1
votes1
answer471
viewsQ: Update data in Real-time without refresh in Blade - Laravel
I would like to know how and what is the best way to update data in real time on a screen using Laravel. The situation is as follows: I will have a (edit) screen, which displays the items already…
-
0
votes1
answer92
viewsQ: How to get this.data from an input with onkeyup
I need to get the data of an input with javascript. In this way, I created an up-to-date function. function atualizaAdicionados(e){ console.log(e.value); console.log(e.data('id')); } <input…
-
0
votes6
answers16160
viewsA: Format 9 and 8 digit phone numbers
Function for 9 digits + DDD function formataTelefone($numero){ $formata = substr($numero, 0, 2); $formata_2 = substr($numero, 3, 5); $formata_3 = substr($numero, 4, 4); return "(".$formata.") " .…
phpanswered Julio Cesar 15