Posts by Matheus Delatorrre • 141 points
14 posts
-
-1
votes2
answers37
viewsA: Put my email to receive the contact messages
Hello @Miguel Filipe. You can use a PHP code to send the email. Only with HTML this is not possible. I recommend the Phpmailer library. https://github.com/PHPMailer/PHPMailer In their GIT you find…
-
2
votes2
answers4025
viewsQ: Jquery UI autocomplete JS input
Hello I have a problem here when I create an input dynamically and it should work the Widgets autocomplete jquery ui. I saw several forums and they show how to make it work, but my problem is that…
-
0
votes1
answer495
viewsQ: Element event created after DOM loading
Next: I have a page where requests will be made. On this page, the user chooses the item and can, if desired, add extra items to this item, for example "more cheese". When I insert this "more…
-
1
votes1
answer52
viewsA: Create table inside cell
I changed the code to var tab_produto = document.createElement("TABLE"); cell3_prod.appendChild(tab_produto); and it worked. Falow!! Thanks a lot!!
-
0
votes1
answer52
viewsQ: Create table inside cell
Hello. I have a script where I need to add a new table in a td created via javascript. I tried to create the new table directly using something like: var newTable =…
-
2
votes0
answers421
viewsQ: Insert onclick event into dynamically created input
I have a table where the user can insert a row into the table and then delete it if necessary. For this, when it adds a Row, in the second cell I insert two cells. One contains the content and the…
-
0
votes1
answer53
viewsQ: deleteRow Do not delete table row completely
Follow my javascript function that should permanently delete a line: function deletaItemExtra(item){ var x = document.getElementById(item); x.deleteCell(1); x.deleteCell(0);…
-
2
votes1
answer77
viewsQ: Problem with tr of table inserted via javascript
function cadProd(){ var nomeProd = document.getElementById("nomeProd").value; var categoria = document.getElementById("categoria").value; var descricao = document.getElementById("descricao").value;…
-
0
votes1
answer77
viewsQ: Two-dimensional array does not change value of second array position
Eai rapazeada! I’m making a prototype order system. My idea: I have a list of products and when user clicks on more or less of the item, I call a javascript function to change the quantity of the…
phpasked Matheus Delatorrre 141 -
3
votes2
answers988
viewsQ: Declare public variables in the __Construct method
Note the example of the method: <?php #noticia_construct.class.php class Noticia{ public $titulo; // Acredito que não seja necessário public $texto; // Acredito que não seja necessário function…
-
1
votes1
answer152
viewsA: Problem with zIndex Javascript
Analyzing the code, I realized that using z-index would be confusing. I used Transition within css and the following formula within JAVASCRIPT var slideAtual = 0; var timeOut = ''; var ajustaZIndex…
-
1
votes1
answer152
viewsQ: Problem with zIndex Javascript
The script will be a banner rotating two buttons: forward and back. I’m getting to know Javascript better and I have a question. Why doesn’t it recognize Anteslide and Proxslide? Follows the code:…
-
1
votes1
answer1072
viewsQ: Responsive menu with dropdown submenu
I am working on a template menu and need to adjust the submenu view. I cannot make the submenu overlap with the original menu. When I hover the mouse through the submenu link, it is displayed,…
-
1
votes1
answer16952
viewsQ: Array generates "Undefined offset" error
Good afternoon I’m finalizing a script that will make some updates on our website I have an array that at the beginning contains all the clients of the company and as the script is run, some are…
phpasked Matheus Delatorrre 141