Posts by ThiagoYB • 29 points
6 posts
-
2
votes2
answers86
viewsQ: Combining CSS selections with parent child and sibling elements
I have the following code: <ul class="menu"> <li><label for="menu1">Menu 1</label></li> <li><label for="menu2">Menu 2</label></li>…
-
0
votes1
answer50
viewsA: Problem sending a file by POST
At line 4 where you check for the POST you could put the File field to ensure that it is sending a file. In Line 6 you put ; (semicolon) the right one would . (point) to catch extension. Changing…
-
0
votes2
answers377
viewsA: Unable to convert JSON List to Array in Javascript
After a lot of research and testing, I found the problem! My PHP codes were infected with an invisible character called "ZERO WIDTH NO-BREAK SPACE" Even though I "settando" correct formatting on…
-
0
votes2
answers377
viewsQ: Unable to convert JSON List to Array in Javascript
I’m having trouble getting the javascript data from a json. To better explain, the data comes from the database, thus: //PHP $rs = mysqli_query($con, "SELECT id_acao as id, text FROM acoes"); $data…
-
0
votes0
answers150
viewsQ: Javascript function returns wrong Ajax
I’m validating a register with JS. There’s a part like this: ... if( existUser() ){ alert(' Email já cadastrado.'); } else // ok , envia formulario ! The Js function that checks whether the user…
-
0
votes0
answers84
viewsQ: Match 5 Loop Set " for "
I’m creating a unique id for each id, which works like this: the last 2 digits validate the previous 9 with an algorithm. I am creating a function that finds the first 5 digits, as last 6 data. in…
javascriptasked ThiagoYB 29