Posts by David Richard • 21 points
2 posts
-
-1
votes1
answer128
viewsQ: Make a single click onclick
Good afternoon, how to fire the method with a click on the TR? follows code <script> function exibe(id) { var display = document.getElementById(id).style.display; if( display === "none") {…
javascriptasked David Richard 21 -
-1
votes2
answers547
viewsQ: Search ID in a PHP select
<select class="form-control" name="cliente"> <?php if ($clientes) { foreach($clientes as $ind => $valor) { ?> <option value="<?php echo $valor->nome ?>"><?php echo…