Posts by Ronaldo Zanoni • 81 points
2 posts
-
7
votes3
answers2065
viewsA: Link to call in phone numbers
Just print the value in the href of the A tag. For example: <a href="tel:<?=$row['telefone'];?>"><?=$row['telefone'];?></a> You may need to remove the special characters from…
-
1
votes1
answer365
viewsA: Function within function
The parentheses around the function is because this is a self-executable function. Note that just after the parentheses around it, it is running ( ) (function checkDomReady() { var state =…