Posts by Gláuber Sampaio • 96 points
5 posts
-
1
votes3
answers2658
viewsA: Div responsive with image and other elements inside
Hello. You can get what you want by reversing the "priority" order. To make the slideshow responsive I recommend not leaving it with exact values (like 300px). I would do something more or less like…
-
4
votes1
answer7205
viewsA: Validation of input with "real time" query to the database, to check whether the information is already registered or not
Apparently, it looks pretty simple. I’ve been researching some ways to do this, and I’ve found a very good example that might help. Here you basically watch as you type, and wait a time of 0.4s from…
-
1
votes1
answer1520
viewsA: Full screen when loading the page
You can try starting using the syntax below: $(window).on('load', function () { ... }); I would also try to put one setTimeout as security. After the page loads, it executes something after 1…
-
1
votes2
answers71487
viewsA: Apply opacity only in background
You can try putting a div within another. As in the example below: HTML: <div class="container"> <div class="bg"></div> </div> CSS: .container { position: relative; }…
cssanswered Gláuber Sampaio 96 -
1
votes4
answers522
viewsA: AJAX does not pass values to PHP
You can use the $.ajax function of jQuery and the serialize() method that already formats the form data for sending. Example: HTML: <form> <!-- Não esquecendo de colocar o atributo 'name',…