Posts by renato lira • 16 points
2 posts
-
0
votes2
answers74
viewsA: Remove dynamically created button
Using pure js gets more or less like this: var id = 0; function criar() { $("#divina").append("<button id='botao" + id +"'…
jqueryanswered renato lira 16 -
0
votes2
answers53
viewsA: JSON does not return Mysql database data
You are passing the state via post and are trying to read with get, try: <?php include './Classes/Conexao.php'; include './Classes/DAO/UsuarioDAO.php'; if ($_POST)) { $estado = $_POST['estado'];…