Posts by user130117 • 68 points
3 posts
-
0
votes1
answer33
viewsA: How to make a function run after another? JS (Jquery)
Are you seeing that function you declare in .done() jQuery? That’s the callback, the function you pass to jQuery to invoke when it gets the result. What you want is to call montaTabela via done, ie:…
-
1
votes1
answer20
viewsA: failure when trying to assign property of an object with an array index
This is happening because you are trying to access the key of an object as if the object were an array. You can’t tell by your code, but it would be $anunciosFiltro generated by a JSON? JSON_DECODE…
phpanswered user130117 68 -
1
votes1
answer46
viewsA: Hide login page for logged in users
The error exists because for someone who is not logged in, the key nivel there is no. Unlike Javascript, which only returns undefined, PHP throws an error when trying to access a missing key. Before…
phpanswered user130117 68