Posts by AntonioSantos • 161 points
13 posts
-
2
votes2
answers3481
viewsQ: Regex for strong password
I want to create an expression that creates a password with: 8 characters minimum 1 Capital letter at least 1 Number at least 1 symbol at least: $*&@# If possible, also do not allow equal…
-
0
votes1
answer176
viewsQ: Concatenation with Comma and Plus Sign
I am studying nodejs, and doing some tests with some native modules of Node I came across the following instruction. For free memory printing on computer: const os = require('os');…
-
0
votes0
answers45
viewsQ: Problem adding property to stdClass php
i obtain by means of a query to the database the results in stdClass. So far so good, but I will have to add a new property in the result. Someone could help me do that, I’ve been doing some…
phpasked AntonioSantos 161 -
1
votes2
answers79
viewsQ: Data html with jquery
I have a question. I will make the jquery be in charge of inserting the images depending on the width, and each image will be on the data-mobile and data-desktop. <img class="data-img" src=""…
-
0
votes1
answer113
viewsQ: Fixed menu in refresh (F5)
I’ve created a menu that understands when the scroll goes from a certain point and is fixed, until then everything right, but when I rolled the page a little lower, and updated (F5) I noticed that…
-
0
votes2
answers836
viewsQ: Get position of an element
I have for example the following structure <div style="height: 1500px;"> <div id="dv1" style="height: 600px"> conteudo 1 </div> <div id="dv2" style="height: 300px"> conteudo…
jqueryasked AntonioSantos 161 -
1
votes1
answer51
viewsA: Help with Hover jquery
HTML <a class="mama" data-over="https://minecraft.net/static/theme/img/gif/menu-buy.gif" data-out="https://minecraft.net/static/theme/img/gif/menu-buy--reversed.gif"> <img…
jqueryanswered AntonioSantos 161 -
3
votes1
answer51
viewsQ: Help with Hover jquery
I’m trying to make this menu lively (https://minecraft.net/pt-br/). Gifs for testing (get the ): State Hover - Normal state - I would like to do so, by hovering the mouse over the anchor to take the…
jqueryasked AntonioSantos 161 -
1
votes1
answer1033
viewsQ: What is and how to use array_walk?
I’m learning about mvc through a series of video lessons on youtube, so so it’s okay, but the guy got to a point that ended up using array_walk(). I couldn’t understand its workings. The complete…
phpasked AntonioSantos 161 -
0
votes3
answers79
viewsQ: Problem to attack son and doubt in this use
I’m having trouble understanding the use of this. I have the following structure: <div id="a" class="clsa"> bbb </div> <div id="b" class="clsb"> <span id="bb" clsbb> Conteudo…
-
0
votes2
answers2987
viewsQ: Load js function automatically and for various Ivs
My problem is this. I have two or more Ivs on my page and I want to automatically call a function for them when loading the page in question. And at the same time that I call these functions I want…
-
1
votes1
answer756
viewsQ: Change radio input checked by Jquery
I have one more question here on the forum rs. I created a css framework, made a slider with input radio + label but had not put animation (change from second to second between them). But only q now…
-
5
votes1
answer315
viewsQ: What is the difference between SCRIPT_FILENAME and REQUEST_FILENAME?
I am studying URL friendly, and in many examples I came across these two forms of writing: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d and RewriteCond %{SCRIPT_FILENAME}…