Posts by Furlan • 2,342 points
112 posts
-
4
votes4
answers2426
viewsQ: Color transitions with fade in a word
I have a code that is making color transitions, has to leave a fade in this transition, IE, so it does not keep changing so "dry", I am doing with JS, is there any CSS what makes it? Anyway, wanted…
-
0
votes0
answers45
viewsQ: Transforming American Data for Brazil in Js
I have the following date on JS : 2015-03-26T16:22-04:00 what code can I use to transform it into the Brazilian format?
-
0
votes3
answers637
viewsQ: Leave paging fixed using jQuery datatable
I have a table and I’m using it datatable of jQuery, however, my table has a lot of column, and I did a scroll on it, but in this my paging scrolls along with the scroll, would have some way to…
-
5
votes3
answers11265
viewsQ: Sessions in JS or jQuery
Is there any way to use js or jquery sessions? I’d like to do something similar to php sessions.
-
4
votes2
answers10690
viewsQ: Display a Loader while processing ajax
It can show a message like: "Loading..." while my ajax does the operation? AJAX $.ajax({ url: url, type: 'GET', dataType: 'json', success: function(data) { console.log("sucesso"); }, error:…
-
0
votes1
answer263
viewsQ: Problems inserting HTML using ajax
I’m having trouble inserting HTML using ajax HTML: <table class="table table-hover"> <thead id="thead"> <tr id="tr-thead"> </tr> </thead> <tbody id="tbody">…
-
0
votes2
answers378
viewsQ: Execute JS command using string
I have a command to take the size of my json, but I need to use a string to indicate which object I want to take the size: var comando = data.result[0][0].'Pedidos'.length; the mistake you give me…
-
26
votes2
answers28661
viewsQ: Is there an API to send a message via Whatsapp using PHP?
Is there an API to send a message to Whatsapp from a person using PHP?
-
1
votes2
answers253
viewsA: QPX Express API - Flight list
SOLUTION I managed after a lot of research to get the flight list using qpxExpress <?php $url = "https://www.googleapis.com/qpxExpress/v1/trips/search?key=SUA-API-KEY"; $data_string = '{…
-
0
votes2
answers253
viewsQ: QPX Express API - Flight list
I’m trying to use the QPX Express API to search for flight lists, the documentation has how to pass the arguments, but I do not know how to use, for example: Documentation: The simplest way to Try…
-
1
votes1
answer829
viewsQ: Error checkout using Paypal
I have the module paypal installed in Brazilian, when I finish the purchase and choose the payment method by paypal, this error occurs: PayPal gateway recusou a solicitação. Security header is not…
-
3
votes1
answer1251
views -
-1
votes1
answer1104
viewsQ: How to change a domain store?
I need to change my store on the Magento domain platform, how should I proceed? SHOP HERE
-
1
votes2
answers1969
viewsQ: Get Radio Button value in Foreach-JS
I’m trying to get the value of radio in the JS using foreach foreach($produtos as $produto){ <input type="radio" id="<?php echo trim($produto->CODIGO); ?>" name="plano_ouro"…
-
2
votes1
answer427
viewsQ: JSON return in an array in the LOOP
I need to save the return of JSON in an array, i.e.: $.ajax({ type: "POST", dataType: "json", url: "/engine/listarPublicacoes.php", success: function(data) { for (var i=0;i<data.length;i++){ var…
-
1
votes1
answer90
viewsQ: Delete images sent by ckeditor
I am using the Ckeditor editor. When I put an image in the text in the database it is stored as follows: <p><img alt=""…
-
4
votes2
answers16723
viewsQ: Picking values with names in JSON
I got this one JSON: {"nome_rede":"lucasl","nome":"Lucas Lima","imagem":"http:\/\/intranet.supersoft.com.br\/novo\/usuarios\/fotos\/lucasl.jpg"} How do I catch him using AJAX? So far my code is like…
-
-5
votes1
answer1111
views -
0
votes2
answers289
viewsQ: View grouped data
I am making a query in the database and I am having difficulties with data duplications, so far, this is my query: SELECT * FROM tec_postagens tp INNER JOIN tec_historico_status th ON…
-
3
votes1
answer2029
viewsQ: Implement navigation with buttons: [first] [next] [previous] [last]
Explanation: I have an HTML+jQuery table and I have an enumerated pagination that is functional, but I would like to add an additional navigation to it. Question: I would like to add an…
-
6
votes3
answers3470
viewsQ: GROUP BY last entry
I’m making an appointment at the bank, follow my table below id | protocolo | status | alteracao | datahora 1 2 1 teste 2014-11-10 15:23:44 2 2 3 teste 2014-11-10 14:23:44 3 2 4 teste 2014-11-10…
-
13
votes5
answers53548
viewsQ: Mysql decimal value
I am trying to insert decimal value in mysql database, wanted to put these values for example: 1.500,00 Thousand, hundred and ten What is the type of column I must declare?…
-
2
votes2
answers421
viewsA: More than one table in the query - LEFT JOIN SQL
SOLUTION SELECT * FROM categorias_concursos cat LEFT JOIN concursos_categorias con ON cat.id = con.idCategoria and con.idConcurso = '$id' LEFT JOIN concursos c ON con.idConcurso = c.id…
-
1
votes2
answers421
viewsQ: More than one table in the query - LEFT JOIN SQL
Help with SQL: Query: SELECT * FROM concursos LEFT JOIN concursos_categorias ON concursos.id = concursos_categorias.idConcurso LEFT JOIN categorias_concursos ON concursos_categorias.idCategoria =…
-
1
votes1
answer577
viewsQ: Close tooltip in Full Calendar
I’m trying to close my tooltip on jQuery calendar: Example Clicking on the event will show the tooltip and a " x " in the upper corner, when clicking on it the tooltip must be closed, the JS code on…
-
6
votes4
answers817
viewsQ: SQL Condition Array - PHP
good afternoon, I am sending a search filter to my BD, and I want to make these conditions within an array, for example: $condicoes = array(); $nome = $_GET['nome']; if (!empty($nome)) { $condicoes…
-
1
votes2
answers586
viewsA: Insert mysql using ajax
SOLUTION var url = 'http://www.petfy.com.br/android/addUsuario.php'; $.ajax({ url: url, type: "POST", data:{ nome: nome, email: email, senha: senha, telefone: telefone, endereco: endereco, estado:…
-
1
votes2
answers586
viewsQ: Insert mysql using ajax
I am trying to enter registration in BD via ajax but am having problems, I was using the format: 'json' but I was giving permission error and Alz, now I’m using type: "POST", dataType: "jsonp".…
-
0
votes1
answer353
viewsQ: Google Maps API - window always opens the last
Talk personal, all right? I’m working on Google maps, picking up customers in my bank and putting the Markers on the map according to their latitude and longitude, when you click on the Mark opens a…
-
0
votes1
answer229
viewsQ: Facebook Plugin - Phonegap
I’m using a Phonegap plugin to log in with Facebook, it’s working perfectly, I can get the email and user id, now, I needed to put this data in a JSON for me to work with it via ajax. follows the…
-
0
votes2
answers16510
viewsQ: li - CSS spacing
I’m trying to space my menu so it’s centered on the content... the content has width:80%; ... WEBSITE HTML: <nav class="navbar navbar-default" role="navigation"> <div…
-
0
votes2
answers1251
viewsQ: Form Filters - PHP
I am developing a search in php for the database and I am having difficulties, the search is based on filters, for example: state, city, rooms, rooms .... *IMAGE OF THE FORM * I wanted to insert…
-
-2
votes2
answers314
viewsQ: Repeat Block with animation - CSS - PHP
I have an animation on my site, and I need to duplicate it, I mean, I need to create more of a "square" with the animation, without it conflicting with another: WEBSITE from a glance down there, and…
-
-2
votes1
answer74
viewsQ: Warp Shadow - CSS
I’m trying to make a warp shadow effect on my div but I’m not getting it, someone can help me? www.planow.com.br/nobre/empresa.php
-
1
votes1
answer201
viewsQ: Use :before or a div with an image?
I’m finishing a website and I don’t know if I use :before or a div with the background of the picture, what I need is this: As you can see, there are two divs, the first is the glasses, and the…
-
1
votes2
answers311
viewsQ: Maintain full size image - CSS
good morning, I’m showing images in a slider, only they’re being stretched, like q do in css, so that it stays in the size specified in css, for example: width:200px; and height:200px. on that, the…
-
3
votes2
answers5945
viewsQ: Get full monitor width using CSS3
Is there any way to get the width total of a monitor using CSS or CSS3? I know that in JS there is a $(window).width(); which associates to a variable the width of the monitor size. Now I needed to…
-
4
votes2
answers11772
viewsQ: JSON does not accept accentuation
Friends, I have a problem, the string that has accent not being able to catch it using JSON: $imagens = array(); $sql = mysql_query("SELECT * FROM texto_index"); while ($row =…
-
0
votes1
answer919
viewsQ: Google Maps API not working using Cordova
I am developing an application for Android using Cordova, I am doing the geo localization working with the latitude and longitude of the user, taking this data, I create the map (the position of the…
-
0
votes1
answer749
viewsQ: Retouch the App screen - Android Cordova
I’m developing an app for Android using Cordova, on my login screen, I send the data to a file in my domain, it makes the request takes the data, now, how to go back to the app screen to confirm the…
-
3
votes2
answers276
viewsQ: Input image
Android developers, need to put an image at the beginning of input: How can I do?
-
4
votes1
answer1146
viewsQ: How to Make Splash Screen?
I’m developing an app for android using eclipse, in this app, when it starts, I needed to have a presentation screen (splash screen), I mean, a screen with my logo, then wait about 4 seconds, and go…
-
-2
votes1
answer84
viewsQ: Slider Jquery UI
I am developing a slider where I need to show 4 images at a time, 2 at the top and 2 at the bottom, using jquerUI slider, I made an example in jsfiddle, but I am only able to put all in line,…
-
1
votes1
answer3900
viewsQ: How to make smooth bearing with button or anchor?
I need some help in css, and js. I need a js to do that when I click the down button, or up, scroll a div to a certain size: Example link: http://jsfiddle.net/A64S2/…
-
2
votes1
answer157
viewsQ: Inverted animate from a "close" button
I’m developing a Animate with JS and CSS, which when clicking the button, the element does the bounceOutLeft and Right, and so shows the hidden content. The animation is working, however, how to…
-
-2
votes1
answer215
viewsQ: Slider Jquery - Photo Gallery -PHP
Guys, I’m looking for this slider, but I can’t find, I need this guy, the images come from the database and as I drag the ball, the images change, someone knows where I can find?…
-
1
votes2
answers80
viewsQ: Taking the last position on the bench
I need to get the last row of a column using Cakephp. I’m trying like this: $idAtual = $this->Albun->find('all', array('fields' => 'codigo')); Only he’s returning all the lines. How to get…
-
0
votes1
answer153
viewsQ: Add elements via Javascript from the database
I’m using an effect of Full Screen Overlay in my website, this effect I caught on Codrops. It is working normal though, as I am searching for data in the BD, how to make it work not only on one…
-
-1
votes1
answer280
viewsQ: Cakephp Site Server and Domain Change
I developed a website in Cakephp and had to change it to a domain and server. I passed the files to the server and configured the database files in the folder app/config/database.php. All right,…
-
2
votes2
answers680
viewsQ: Share text on Facebook
I’m trying to share the text of my web to Facebook, I’m using the Addthis to create social media buttons. He gives me this: <!-- AddThis Button BEGIN --> <div class="addthis_toolbox…