Posts by Rogério Pancini • 71 points
11 posts
-
0
votes1
answer302
viewsQ: Display div after sending emails via POST Ajax PHP
I’m learning to email via POST in Ajax. What I have is right, the only thing is that after sending the email, it does not load the form (HTML returns), getting a hole in the screen: <!DOCTYPE…
-
0
votes2
answers832
viewsQ: Leave div and fixed elements
I have div that opens to the side by clicking the button: If I let the div with "Change City" with fixed height will solve, but the letters keep moving. Would it have some way that the elements…
-
0
votes0
answers23
viewsQ: Problem converting dates in PHP
I have to compare dates to do various functions on the site, what takes the current time is this instruction: date_default_timezone_set("America/Sao_Paulo"); $hora = date("d/m/Y H:i"); Returning…
phpasked Rogério Pancini 71 -
0
votes0
answers104
viewsQ: Retrieve Jquery variable in PHP and generate cookie
I have this pop-up that, when clicking, will fetch the user’s geolocation: <div id="modal_success" style="display: none;"> <div class="modalcontent"> <div class="modal-header"…
-
4
votes1
answer3070
viewsQ: Pass Jquery variable to PHP
I’m with this script that brings user geolocation: (function() { if(!!navigator.geolocation) { var map; var mapOptions = { }; map = new google.maps.Map(document.getElementById('google_canvas'),…
-
0
votes1
answer63
viewsQ: Conflict with JSON generation
I have this layout of a JSON file, which I must follow: { "data": [ { "id": 1, "title": "ClÃnica Fassina", "location": "ClÃnicos Gerais", "latitude": 51.541599, "longitude": -0.112588, "url":…
-
0
votes2
answers258
viewsA: Bring PHP id in Jqueryui autocomplete query
Thanks an hour. In PHP, I can do: <?php /******* Conexão com o bando de dados *******/ include "../../Conexao/config.php"; mysqli_select_db($config, $database_config);…
-
0
votes2
answers258
viewsQ: Bring PHP id in Jqueryui autocomplete query
I have this structure: $(function($) { $( "#cliente" ).autocomplete({ source: '../php/search_clientes.php' }); }); <div class="form-group"> <div class="row"> <div…
-
1
votes2
answers573
viewsQ: Change image according to screen resolution
I’m studying something in jQuery in case. It is possible to change an image according to the screen resolution? For example: in the browser itself, with it without minimizing is the big image. If…
-
1
votes2
answers727
viewsQ: Calculate inputs with Jquery
I’m having trouble understanding how input calculation works with Jquey. I will show the following example: <!DOCTYPE html> <html> <head> </head> <body> <input…
jqueryasked Rogério Pancini 71 -
0
votes2
answers280
viewsQ: Jquery mask does not work within another Jquery script
I’ve been racking my brain for months and nothing. I believe it to be relatively simple, but I give up on breaking my head. 'Cause I’ve been racking my brain for months, I’m humbled to ask for help,…