Posts by Andrey Didoff Do Nascimento • 41 points
6 posts
-
0
votes3
answers397
viewsA: How to select a tr element in the middle of "N tr’s" in jQuery?
To catch the elements without knowing their ids you can do as follows: Catch 3 tr: $('tr:nth-child(3)') Catch tr with name: $('tr[name="nome1"]'`) In case you wanted to know how many trs you have…
jqueryanswered Andrey Didoff Do Nascimento 41 -
2
votes0
answers56
viewsQ: How to write a navigation in javascript
Hello, We are developing a system in which the customer wants to implement a navigation recording system, for their customers. Intent on internal monitoring of the platform. In other words, their…
-
0
votes1
answer200
viewsA: htaccess - Rewrite URL with . htaccess inside a subdirectory
In order for your htaccess to do this it will need to be in the "htdocs folder"; Inside htaccess put the following code: RewriteEngine on RewriteRule ^redirect/$ Desenvolvimento/Projetos/redirect/…
-
0
votes2
answers98
viewsA: Hyperlink problem for connection to phone numbers
I believe that something like this should help you! If Negative, explain better what you need so I can help you. var telefone_banco='(012) 3456-7890'; var tel_sem_espaco=telefone_banco.replace("…
-
0
votes1
answer295
viewsA: Random Date with PHP exception
function procurahorario($manha_min,$manha_max,$tarde_min,$tarde_max,$intervalo,$horarioocupado){ // Define o intervalo da manhã: $hora_manha_min=new DateTime($manha_min); $hora_manha_max=new…
-
1
votes1
answer295
viewsQ: Random Date with PHP exception
I have the following case: I have opening hours from 08:00 to 12:00 and 13:00 to 18:00. $hora_manha_min="08:00"; // Pode variar conforme consulta em Web Service (String) $hora_manha_max="12:00"; //…